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,它的工作很好.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...