Facebook OAuth “An Error Has Occurred”

守給你的承諾、 提交于 2019-12-05 02:48:18

问题


I'm having issues getting users logged in with my OAuth Dialog. This was working earlier today, so I suspect that it might be in conjunction with the February Breaking Changes. See for yourself in production at WomStreet.

Sandbox mode is disabled, the URL's are set properly in the basic setting section the developer page in facebook.

I am using devise for Ruby on Rails, but even inspecting the URL by hand seems to look good.

Any ideas on where to begin to debug?

UPDATE 1: Seems there is a bug report open on Facebook addressing this issue: Link here


回答1:


looks like facebook got the dev community angry again by rolling out changes that effect the basic login. i don't see any solution now but trying the login dialog here: https://developers.facebook.com/docs/concepts/login/

bug link: https://developers.facebook.com/bugs/207955409343730

EDIT: to solv it you need to change your URL params. change:

app_id to: client_id
next to: redirect_uri

so the url you link to should look like:

https://www.facebook.com/dialog/oauth?client_id=something&redirect_uri=something



回答2:


EDIT: Solved: I have been tinkering with this for the past 24 hrs, and I think I have the solution, which is at least two-fold:

1) Make sure you are using the correct url:

http://www.facebook.com/dialog/oauth?client_id=[APP_ID]&redirect_uri=[YOUR_REDIRECT_URI]&state=[STATE]&scope=[SCOPE]

2) Log into facebook, go to developers.facebook.com, click your 'Apps' link at the very top center. Go to each of the apps that is affected. You may notice a red Alert on these apps. If you have alerts, they will instruct you that you need to enable February Breaking Changes before Feb 6th. Click 'Edit App.' Go to Settings->Advanced on the left. Note that there are Enable/Disable inputs for upcoming Breaking changes, and note that February is no longer listed there. Click Save Changes at the button, without actually changing anything - this action is evidently quietly Enabling Feb Braking Changes! Wait a few minutes for the changes to take effect.




回答3:


That same problem is there right now(the time I post this answer) on Stackoverflow facebook login as well. It might be the error from facebook side or as you said the changes have to made on the client side as mentioned in https://developers.facebook.com/roadmap/




回答4:


FB LOGIN was not working on stackoverflow but now it is working hence tapped the request response and found out that the URL used has been changed

the URl which we are using and is failing is https://graph.facebook.com/oauth/authorize?client_id=

when we changed it to the following url which stackoverflow is using it started working.. property.facebook.authorize.url=https://www.facebook.com/dialog/oauth?client_id=

hope this works for you all too.




回答5:


If you use Ruby and omniauth-facebook gem, you can try this forked one for now to use correct OAuth URL.

In Gemfile:

gem 'omniauth-facebook', git: 'git://github.com/luvtechno/omniauth-facebook.git', branch: 'fix_oauth_url'



来源:https://stackoverflow.com/questions/14721279/facebook-oauth-an-error-has-occurred

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!