Github api错误redirect_uri_mismatch

时间:2016-01-11 20:07:55

标签: api github oauth uri

尝试使用github api时,我一直收到同样的OAuth错误。有时它会消失,但大部分时间都会消失。我已经尝试重置我的密钥,撤销所有令牌,清除safari缓存但没有运气。这是错误:error=redirect_uri_mismatch&error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23redirect-uri-mismatch

所有论坛都说要修复此错误,请删除我已执行的请求的redirect_uri参数。

这是我的要求:https://github.com/login/oauth/authorize?client_id=myclientid&scope=user,public_repo

一切都显示出来,当我点击授权时,它会将我重定向回我的应用程序,但不会给我代码,而是给我错误。enter image description here

1 个答案:

答案 0 :(得分:1)

在您的授权回调网址

中添加http代替https

在您的GitHub OAuth应用设置中。

http://www.example.com/oauth/complete/github/
  

另一个选项

<强> settings.py

SOCIAL_AUTH_REDIRECT_IS_HTTPS = True