Go to developer.facebook.com โ Tools and Support โ Select Interactive API.
Here U receives FQL request, access token
Then write the code in C # .....
var client = new FacebookClient();
client.AccessToken = Your Access Token;
//show user profile picture
dynamic me = client.Get("me?fields=picture");
pictureBoxProfile.Load(me.picture.data.url);
//show user birthday
me = client.Get("me/?fields=birthday");
labelBirthday.Text = Convert.ToString(me.birthday);
source
share