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.

im trying to do an app that doesn't require to redirect for authorize.

What i wanted to do is an app that detects if it likes a page it shows some content, of doesn't like, it shows another kind of content.

How can i do ?

Thanks and have a nice day!

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do this using the PHP SDK (or similar). All you have to do is put the app on a Fan Page and decode the signed_request parameter and see if the user has liked the page ( liked =>1.

You can decode the signed_request by calling: $facebook->getSignedRequest(); and then var_dump it to see the data it returns.

share|improve this answer
It worked!!! Thanks so much! – Enrique Benitez Jul 23 '12 at 14:56

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.