Recently I tryed to send an application notification, but i got error:
(OAuthException) (#2) Failed to create any app request
code is:
FacebookClient fbClient = new FacebookClient(access_token);
var args = new Dictionary<string, object>();
args["message"] = "Invitation to app";
args["title"] = "Super title";
args["data"] = "you are welcome";
fbClient.Post("/" + fbid + "/apprequests", args);
access_token obtained using:
scope: offline_access, publish_stream, user_photos, publish_actions, read_stream, email