On the Graph API explorer if I do
https://graph.facebook.com/me/picture
I am to retrieve my picture. However in Facebook C# SDK MVC 3
if I do
var client = new FacebookClient(AccessToken);
ViewBag.UserPicture = client.Get("me/picture");
I get an error
Invalid JSON string
What am I doing wrong?