I want to remove the extended email permission if I only get the “@proxymail.facebook.com” email adress.
I use the new API version = 2.1.2
I tried this way, but that dont works:
$facebook->api('facebook.auth.revokeExtendedPermission',array(
'perm' => 'email',
'uid' => $uid
));
thx
You’ll have to call this in a different way, because the
apimethod on the FB PHP SDK is polymorphic.Try this: