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.

Here's the error I get

error OAuthException: (#2) User can't delete this request: Unknown error

And here's my code using Requests 2.0

try {
 $delete_success = $facebook->api("/$requestid"."_$fbprofileid&access_token=$config[appId]|$config[secret]",'DELETE');
 if ($delete_success) {
    echo "Successfully deleted " . $requestid;
} else {
   echo "Error: Your invitation wasn't deleted.".$requestid;}
}          
catch (FacebookApiException $e) { echo "error $e"; }
share|improve this question
1  
are you sure that the request_id you are trying to delete is still valid? have you tried using the graph api explorer to view the request_id? – Lix Nov 14 '11 at 11:04
Thanks for telling me to use the Graph API Explorer. I've just realised that the request_id ends with _profileID – desbest Nov 14 '11 at 21:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.