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'm trying to remove app requests using an HTTP POST request to: https://graph.facebook.com/288041244541781_100000461597474?access_token=AT&method=delete The access token i'm using is from the signed_request object.

However, when doing so I get this error:

{
   "error": {
      "message": "(#2) App Request Recipient Must Be Specified: The recipient for this app request must be specified through a user-signed access token or the fully specified app request ID.",
      "type": "OAuthException"
   }
}

I think I supplied the fully specified app request ID, but I can't seem to find what the difference is between a user-signed access token and the token I'm using. How can I get this to work?

share|improve this question

2 Answers

Does the access token look correct in the linter tool and has the correct permissions?

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 20:36
if(isset($_REQUEST['request_ids'])) {
  $reqs = explode(',', $_REQUEST['request_ids']);
  foreach($reqs as $req) {
    $url  = "https://graph.facebook.com/".$req."?access_token=";
    $url .= $facebook->getAccessToken()."&method=delete";
    $result = file_get_contents($delete_url);
  }
}
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.