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.");
}