I am using the latest facebook version of C # sdk (http://facebooksdk.codeplex.com/). After I submitted apprequest, I want to remove the request id.
Here's how I do it at the moment:
var app = new FacebookClient(appid, appsecret);
app.Delete(requestID);
But I'm not sure if he retired or not. If I try to see if it still exists using the api graph, I get:
{
"error": {
"type": "GraphMethodException",
"message": "Unsupported get request."
}
}
But the user still has a request in his notification area. Therefore, my question is:> Is the request deleted or am I missing something? Thanks
Johan source
share