我只是安装了Dean Malmgren 的 fbconsole lib 分支,并尝试使用他的fbconsole.automatically_authenticate
功能在 Facebook 上进行身份验证,但没有运气。我刚刚收到此错误消息:
/var/virtualenvs/jd/src/fbconsole/src/fbconsole.pyc in automatically_authenticate(username, password, app_secret, redirect_uri, debug)
411 oauth["state"][0], state,
412 )
--> 413 code = oauth["code"][0]
414
415 # 4. Exchange the code for a user access token for this user's data
KeyError: 'code'
我不知道出了什么问题。我怀疑 Facebook 应用程序设置可能存在问题(例如,我无法将站点 URL 设置为http://127.0.0.1:8080
值)。我尝试在本地主机和生产服务器上运行此代码。但错误仍然相同(Facebook 没有给我code
参数)。
请问有人知道问题出在哪里吗?