Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
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 ? – dwbrito Jun 30 '11 at 17:16

2 Answers

        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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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