Reputation: 1
Is there a way to see if a facebook user liked a page? It might not be the logged in user, a user might not be logged in at all... The page might not be the page where the app is installed. Thanks!
Upvotes: 0
Views: 205
Reputation: 85
You have to make sure you have the "user_likes" scope. Then you use the graph api by doing a ('me/likes'), and put a condition on it (if name=='yourpage').
Upvotes: 1
Reputation: 815
You can get user likes with permissions in application or if your application is a canvas application you can get it with this way;
Fans-only content in facebook with asp.net C# sdk
Upvotes: 0