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 check whether a user has liked my app using this code:

$signed_request = $facebook->getSignedRequest();
$liked = $signed_request['page']['liked'];
echo($liked);

But it doesn't return anything. On the other hand, if I do:

$signed_request = $facebook->getSignedRequest();
$expires = $signed_request['expires'];
echo($expires);

it does return an appropriate value. Is this something to do with permissions?

thanks

share|improve this question
Are you try it in a canvas apps or page tab? – aykut Nov 21 '12 at 10:28
The app is set to be displayed in Canvas – astralmaster Nov 21 '12 at 10:29

1 Answer

up vote 1 down vote accepted

You can get page info parameters with signed_request only if it is a page tab application. If it is a canvas app, you can get like info with a FQL query:

SELECT uid FROM page_fan WHERE page_id="PAGE_ID" and uid = me()
share|improve this answer
So how do i do it for a Canvas app? – astralmaster Nov 21 '12 at 10:31
canvas apps are not linked to any page, so there is no liked status, of course – luschn Nov 21 '12 at 10:33
I edited the answer.. – aykut Nov 21 '12 at 10:33
Thanks, isn't FQL deprecated? – astralmaster Nov 21 '12 at 10:33
No, it isn't developers.facebook.com/docs/reference/fql – aykut Nov 21 '12 at 10:34
show 9 more comments

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.