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'm trying to find the ID of the user visiting my page tab (without having to make him authentify before using the page)

I've tried several methods:

$requete_fb = $facebook->api('/me');

$me = $facebook->api('me', array('fields' => 'username'));

$request = $facebook->getSignedRequest();

$uid = $facebook->getUser();

But all of them did not work (getUser returns me 0, the others PhP errors.)

So how can I do that? I'm not trying to break the TOS, I'm trying to fetch basic information (the locale).

Any other way to do it?

share|improve this question

1 Answer

up vote 2 down vote accepted

It is not possible to get a user_id without the user's permission:

The user_id and oauth_token will only be passed if the user has authorized your app.

However the locale is available in the user object. Please see Signed Request for more information.

share|improve this answer
Yeah, I'm trying to replace the SignedRequest because it started returning Null on every request this morning. Still does it. stackoverflow.com/questions/11653362/… – Fredy31 Jul 25 '12 at 19:44
That’s not the way to go. Figure out what your problem with getting the signed_request is, instead of trying to think of workarounds that might break at any time or might not even be possible. – CBroe Jul 26 '12 at 11:47

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.