ruby-on-rails – Oauth2 Instagram API“redirect URI与注册的重定向URI不匹配”

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Oauth2 Instagram API“redirect URI与注册的重定向URI不匹配”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一种正在开发模式的Rails应用程序,并且可以使用omniauth进行注册.

主持人是

http://localhost:3000/

我正在使用宝石:

gem 'omniauth'
gem 'omniauth-foursquare'
gem 'omniauth-instagram'

当我向Foursquare注册时,毫无疑问.所有的设置都是正确的,而Foursquare开发者设置中的redirect_uri等于主机(localhost:3000)

但是,如果我在Instagram客户经理*中填写完全相同的redirect_uri(localhost:3000). Instagram给了我这个:

{
 "code": 400,"error_type": "OAuthException","error_message": "Redirect URI does not match registered             redirect URI"
}

基于此URL:

https://instagram.com/oauth/authorize?response_type=code&client_id=<ID>&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fauth%2Finstagram%2Fcallback&state=18415adf24dd97873e61094f67c0fb7a94857fedf93e9d2e&scope=basic

*

根据Instagram,我做错什么,怎么解决

解决方法

自己修复了问题添加localhost:3000 / auth / instagram / callback作为redirect_uri,它的工作很好.

猜你在找的Ruby相关文章