[how] showing fb application to fans only

extra

Power Member
Joined
May 18, 2007
Messages
533
Reaction score
102
Hello
I add my site as iframe app to fan page.
My question is how can i show the app only to users that click on like or
how to show different pages to users that click on like and users that didnt click on like button?

Thanks
 
You can use fql query first check if the user is a fan of your app

SELECT uid FROM page_fan WHERE uid= "user id" AND page_id= "app id"

if the user is already a fan, it will return the userid of the user, else it will return null.
 
Back
Top