facebook oauth 身份验证不返回“代码”范围

发布于 2024-10-19 17:43:36 字数 584 浏览 2 评论 0原文

我正在尝试使用 facebook 的 oauth。 基本上 Facebook 必须返回给我一个“代码”参数。 但我什么也没得到,它只是返回我的回调 url(到完全相同的 url)。

我正在使用我的应用程序生成此网址。

http ://www.facebook.com/dialog/oauth?client_id=76209388873&redirect_uri=http%3A%2F%2Ffb.lous%2Fmain%2Ffacebook_callback&scope=read_stream

我使用了其他参数和选项,就在我设置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.

http://www.facebook.com/dialog/oauth?client_id=76209388873&redirect_uri=http%3A%2F%2Ffb.lous%2Fmain%2Ffacebook_callback&scope=read_stream

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘落散花 2024-10-26 17:43:36

我花了几个小时试图解决完全相同的问题。就我而言,结果证明这是一个愚蠢的重定向问题。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文