https://api.instagram.com/oauth/authorize/?client_id=xxx&redirect_uri=http%3A%2F%2Fexample.com%2Fpublisher%2Fauth%3FinviteId%3D00001000-cf33-11e4-9f26-8789dd0b3e01&response_type=code&scope=basic&type=web_server
作为参考,这些查询参数是:
client_id=xxx
redirect_uri=http%3A%2F%2Fexample.com%2Fpublisher%2Fauth%3FinviteId%3D00001000-cf33-11e4-9f26-8789dd0b3e01
response_type=code
scope=basic
type=web_server
端点以200和访问令牌响应。
端点响应:
code=400
error_type = 'OAuthException'
error_message = 'Redirect URI doesn't match original redirect URI'
为了确认这是Instagram的问题,我检查了the API docs,其中非常明确地说明应该可以向重定向URI添加查询参数。我也试过只改变查询参数。例如,当使用此/ oauth / authorize URL替换时,我得到了预期的行为:
https://api.instagram.com/oauth/authorize/?type=web_server&client_id=xxx&redirect_uri=http%3A%2F%2Fexample.com%2Fpublisher%2Fauth&response_type=code&scope=basic
作为参考,这些查询参数是:
client_id=xxx
redirect_uri=http%3A%2F%2Fexample.com%2Fpublisher%2Fauth
response_type=code
scope=basic
type=web_server
这个问题实际上是another question的副本,实际上并没有真正成为一个问题,而且从来没有得到任何答案。
我已经在Instagram上提交了一个错误,但我想知道是否有人发现了这个错误或想出了解决方法。
答案 0 :(得分:2)
您必须为redirect_uri提供额外的搜索参数作为最后一个参数:
用户将被重定向到:
答案 1 :(得分:1)
今天有同样的问题。要获取在请求之间传递的自定义数据,您必须将其作为state
参数。我的授权请求网址看起来像这样:
https://www.instagram.com/oauth/authorize?client_id=SOME_CLIENT_ID&response_type=code&redirect_uri=http://example.com/auth/InstagramRedirect/ &state = 855C0114-F860-420A-AEB1-A276644FCCEA
请注意&和状态 = ...
答案 2 :(得分:0)
这个问题可能为时已晚。但是我今天遇到了同样的问题。已经发布了这个问题,并且将参数传递给认证URL的解决方案如下。
您的额外参数似乎是 type = web_server ,考虑到这一点,您获取代码的URL应如下所示
https://www.instagram.com/oauth/authorize/?client_id=be1b911b487f4919b9c2fb7df0c4142c&redirect_uri=https://wpwifidemo.alepo.net/instagram/joinus/的键入= web_server 强>&安培; RESPONSE_TYPE =代码&安培;范围=基本
然后在调用accessToken API时,将 redirect_uri 参数附加到您传递的参数(在应用程序中配置不同)。 例如
REDIRECT_URI = HTTP%3A%2F%2Fexample.com%2Fpublisher%2Fauth%3FinviteId%3D00001000-cf33-11e4-9f26-8789dd0b3e01?的键入= web_server 强>