I am trying to create an app request using the Facebook C# SDK but it doesn't seem to work. Here is my code:
var fb = new FacebookClient(accessToken);
dynamic parameters = new ExpandoObject();
parameters.message = "Hello World!";
parameters.data = "Custom Data Here";
dynamic result = fb.Post("me/apprequests", parameters);
var id = result.id;
If I understand well it should show me a dialog box displaying a list of friends from which I can select but instead I don't see anything.
Would somebody also know how to get the list of facebook ids after the post has successfully occurred?
Thank you.
Jon