我正在开发一个处于开发模式的 Rails 应用程序,它可以向omniauth 注册。
主机是
http://localhost:3000/
我正在使用宝石:
gem 'omniauth'
gem 'omniauth-foursquare'
gem 'omniauth-instagram'
当我通过 omniauth 注册 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"
}
基于此网址:
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,我做错了什么,应该如何解决?