python-social-auth无法使用GoogleOAuth2

时间:2015-06-22 17:27:28

标签: python google-oauth social python-social-auth google-oauth2

我使用Django移动客户端框架构建了后端,我使用python-social-auth来注册用户,它适用于FacebookTwitter,但对{{1}失败},出现以下错误:

google-oauth2

我在社交套件中调试了Google后端源代码,我发现它在 {"detail":"{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"usageLimits\", \n \"reason\": \"dailyLimitExceededUnreg\", \n \"message\": \"Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.\", \n \"extendedHelp\": \"https://code.google.com/apis/console\"\n }\n ], \n \"code\": 403, \n \"message\": \"Daily Limit for Unaut henticated Use Exceeded. Continued use requires signup.\"\n }\n}\n"} 语句中失败了:

return

我不知道为什么会失败,我们非常感谢您解决这个问题。

1 个答案:

答案 0 :(得分:1)

首先感谢大家的帮助。 最后我发现问题是由于使用了错误的访问令牌。我使用此链接http://developers.google.com/oauthplayground,我在google api列表中选择google +,在生成密钥后,我将其与访问令牌交换以获取我的google +访问令牌,当我在我的python视图网址上运行curl commande时,它就像一个魅力。 如果有人有同样的问题并需要更多的帮助,它可以问我,我会解释更多...