Eatdoku
Eatdoku

Reputation: 6941

Facebook C# SDK + get user's LIKE

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

Answers (1)

jBit
jBit

Reputation: 2981

var client = new FacebookClient();
dynamic result = client.Get("me/likes");

Upvotes: 5

Related Questions