Im currently working on a facebook App which is displayed in the facebook canvas.One of the feature of the app is that any of its users can see the name and profile picture of other participants. Im successsfuly able to retrieve the access_token from the signed_request and store it in a session object .
However,while testing with test user i noticed that i do receive an "Unsupported - Get request" error. when retreiving the public info of the users.
var fb = new FacebookClient(accessToken);
dynamic result = fb.Get(facebookID);
return result;
'facebookID' representing the various user id.Im using the latest version of the Facebook C# SDK. Thanks