I am using the latest facebook c# sdk (http://facebooksdk.codeplex.com/). After i have sent an apprequest, i want to delete the request id.

This is how i do it at the moment:

var app = new FacebookClient(appid, appsecret);
app.Delete(requestID);

But i am not sure if its get deleted or not. If i try to see if it still exist using the graph api i get:

{
"error": {
  "type": "GraphMethodException",
  "message": "Unsupported get request."
   }
}

But the user still has the request in his notification area. So my question is> Is the request deleted, or did i miss something? Thanks

link|improve this question

25% accept rate
Did you try refreshing the page? – echeese May 18 '11 at 8:47
Yes, its still there – Johan May 18 '11 at 11:22
what is the return message when you try to delete the post? i have the exact same code and it works for my app. and which url do you use to get the request ? – alaxid Jun 30 '11 at 17:16
feedback

2 Answers

I'm just getting started on this myself, but I'm guessing that you need to instantiate the FacebookClient with the authorization code from the user, not with your application data. The way I understand it, the request is sent by the user not your application. Hence the need to use the users authorization code to get information about the requeset.

link|improve this answer
feedback
        var url = "https://graph.facebook.com/{0}?access_token={1}";
        fb.Delete((String.Format(url, fullRequestId, fb.AccessToken)));

First parameter is requestId and user id like -> fullRequestId = requestId + "_" + fbUser.id Second parameter is Accesstoken

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.