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.

How can we delete facebook app requests using php?

Currently i am using the following code:

$facebook->api("/$req_id", "DELETE");

But I am getting the following exception:

OAuthException (#803) Specified object cannot be found

share|improve this question
Perhaps the specified object couldnt be found? Does the object by $req_id exist? – TJHeuvel May 8 '12 at 11:39
yes.. its fetched from the DB – Leena Chandran May 8 '12 at 11:52

2 Answers

According to the Deleting Reuqests part of the Requests documentation you should do:

$facebook->api("/$REQID_USERID", "DELETE");

Notice that the sent id has the form of the request id, then '_' and then the user id.

share|improve this answer

You could do this as well

$ids = explode(",",$_REQUEST['request_ids']);

foreach ($ids as $id) {
    $delete_url = "https://graph.facebook.com/" . $id . "_" . $user . "?" . $access_token . "&method=delete";
    $result = file_get_contents($delete_url); 
}

Hope this helps

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.