facebook oauth 身份验证不返回“代码”范围
我正在尝试使用 facebook 的 oauth。 基本上 Facebook 必须返回给我一个“代码”参数。 但我什么也没得到,它只是返回我的回调 url(到完全相同的 url)。
我正在使用我的应用程序生成此网址。
我使用了其他参数和选项,就在我设置response_type=令牌 我得到了 javascript 的参数列表(用 # 字符而不是 ?,它用于客户端,我正在尝试编写一些 api 机器人)
所以现在我无法以某种方式获取任何参数。
I'm trying to use facebook's oauth.
Basically facebook has to return me a "code" parameter.
But i get nothing, it just return my callback url (to the exact same url).
i'm generating this url with my app.
I used other parameters and options, just when i set response_type=token
i get parameter list for javascript (with # character instead of ?, its for client side, i'm trying to write some api bot)
So right now i can't get any parameter with someway.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我花了几个小时试图解决完全相同的问题。就我而言,结果证明这是一个愚蠢的重定向问题。 Facebook 使用代码参数正确重定向回 http://www.mysite.com,然后我的 web 应用程序重定向到 < a href="http://www.mysite.com/users/login" rel="nofollow">http://www.mysite.com/users/login (因为用户尚未登录然而)。在第二次重定向时,我丢失了代码参数。
I tried to solve exactly the same thing for several hours. In my case it turned out to be a stupid redirect problem. Facebook correctly redirected back to http://www.mysite.com with the code parameter, then my webapp redirected to http://www.mysite.com/users/login (because the user wasn't logged in yet). On the second redirect I lost the code parameter.