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 am using this URL for authentication:

https://www.facebook.com/dialog/oauth?
     client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=email,read_stream

It is working fine, but when I use this code it always gives me a 0 value:

$user = $facebook->getUser();

What's wrong here?

share|improve this question

1 Answer

up vote 1 down vote accepted

If that is returning 0, then the user is not logged into Facebook. The authentication just sends the user to the URL, if they don't grant the requested permissions (that is, don't login), then you won't be able to get the user ID.

You should also make sure you are using the latest PHP library (3.1). Older versions aren't compatible with the cookie structure Facebook currently uses, in which case the getUser call will always return 0.

You can also use JavaScript for authentication/request permissions which performs everything inline rather than redirecting to URLs.

share|improve this answer
i myself tried it i am allowing it it returns me to this url mysite.com?code=generated_code – Badal Surana Dec 10 '11 at 16:19

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.