Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have implemented the "Connect with Facebook" feature using these three options:

  • HybridAuth
  • OpAuth
  • Facebook PHP SDK

I have configured them exactly as I am supposed to with the facebook app's id and secret. And when you click "Login with Facebook" it will bring you to the facebook page and request access to your account like normal. I hit allow and then it gets redirected back to my webpage and returns an error.

  • Hybrid Auth: "Authentification failed! Facebook returned an invalide user id."
  • OpAuth: "Authentication failed."
  • Facebook PHP SDK: Doesn't say anything (not configured to report errors in the example?)

Here is the kicker though! When I hit Login again, it will login without issue... I obviously want it to login on the very first try.. not have the end-user have to hit login twice.

Random thought.... Would privacy settings/account settings/etc have any effect on "Connecting with Facebook" on a different website other than Facebook? Or is it possible that I haven't setup my facebook app to work properly? (I have set it with the "website login" feature is working...)

If anyone has had any experience at all with this situation I could really use the help...

EDIT:

Here is the exception it returns... Using the Facebook PHP SDK ./examples/with_js_sdk.php that comes with the fresh download of the sdk.

Oauth Exception 2500

share|improve this question
Please add code to help diagnose – James Pearce Nov 27 '12 at 20:12
I should also add that you are strongly encouraged to use the JS SDK from our CDN so that you can be sure it is up-to-date and performant: developers.facebook.com/docs/reference/javascript – James Pearce Nov 27 '12 at 20:15

1 Answer

Error 2500 means you have no access token but are trying to access /me/ - 'me' is a placeholder for 'current user or page ID' so won't be valid without an access token.

To access the user's list of likes you'll also need the user_likes Permission when authorising them

The most likely causes i've seen for apps not being able to exchange the code for an access token are:

The redirect_uri you used is to a folder or server root and is missing a trailing slash (i.e it's http://www.example.com instead of http://www.example.com/) The redirect_uri you used in the first call to the auth dialog wasn't precisely the same as the redirect_uri you used in the call to exchagne the code for an access_token If your auth flow is broken for some other reason and you can't figure it out from the SDK examples or the Authentication documentation, this could take a while for someone to talk you through because you may be missing some background knowledge necessary to understand their answers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.