Are there any clues how I can get the following stuff of Facebook
- Wall
- News Feed
- User picture
??? Which kind of requests I have to use?
I've tried
dynamic p = (IDictionary<string, object>)fb.Get(userID + "/posts");
dynamic p = (IDictionary<string, object>)fb.Get(userID + "/feed");
But it seems returns the same thing...
To get user I use
user = new FacebookUser();
dynamic u = (IDictionary<string, object>)fb.Get(userID);
user.ID = u.id;
user.Name = u.name;
user.FirstName = u.first_name;
user.LastName = u.last_name;
user.Link = u.link;
user.Gender = u.gender;
user.Locale = u.locale;
But it has no picture link. (http://csharpsdk.org/docs/web/getting-started doesn't help)
Thank you!