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
|
How can we delete facebook app requests using php? Currently i am using the following code:
But I am getting the following exception: OAuthException (#803) Specified object cannot be found |
|||||
|
|
According to the Deleting Reuqests part of the Requests documentation you should do:
Notice that the sent id has the form of the request id, then '_' and then the user id. |
|||
|
|
|
You could do this as well
Hope this helps |
|||
|
|