I'm developing website Facebook application using C#. I can get the information using:
FacebookClient FBApp = new FacebookClient(getAccessToken);
dynamic user = FBApp.Get("/me");
and I can get a user's friends by:
dynamic friends = FBApp.Get("/me/friends");
All this does not contain any links to the photo. I can get the user photo using the link https://graph.facebook.com/*[user_id]*/picture.
But this shows a very small photo... How can I get the photo in a size similar to the size of the profile photo?