Reputation: 6941
i am using Facebook C# SDK for integration my mvc website with facebook.
I would like to know how to get the list of "LIKEs" for the logged in user. Basically something like "Likes: https://graph.facebook.com/me/likes?access_token=" in the following page http://developers.facebook.com/docs/reference/api/
Upvotes: 2
Views: 3833
Reputation: 2981
var client = new FacebookClient();
dynamic result = client.Get("me/likes");
Upvotes: 5