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.

does anybody know how to de-authorize a facebook app on behalf of a user by issuing an HTTP DELETE from PHP?

I tried this, but it didn't work

$de_authorize_app = idx($facebook->api('/me/permissions', 'DELETE');

if($_SESSION['state'] && ($_SESSION['state'] === $_REQUEST['state'])) {
//code
}
else {
$de_authorize_app
echo("The state does not match. You may be a victim of CSRF.");
}
share|improve this question

closed as not a real question by CBroe, Igy, tereško, Kjuly, hakre Feb 18 at 16:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

The first line opens up idx( but doesn't have a closing ) for it (also that function probably doesn't belong there), and the $de_authorize_app toward the bottom is definitely invalid.

But really this probably does what you want (DELETEs the permission and redirects the user so that the SDKs can discover that the user has not authorized.

<?
$facebook->api('/me/permissions', 'DELETE');
header('Location: index.php');
exit;
?>
share|improve this answer
It works!! Thank you very much. – user1709330 Sep 30 '12 at 6:22

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