I'm trying to remove app requests using an HTTP POST request to: https://graph.facebook.com/288041244541781_100000461597474?access_token=AT&method=delete The access token i'm using is from the signed_request object.
However, when doing so I get this error:
{
"error": {
"message": "(#2) App Request Recipient Must Be Specified: The recipient for this app request must be specified through a user-signed access token or the fully specified app request ID.",
"type": "OAuthException"
}
}
I think I supplied the fully specified app request ID, but I can't seem to find what the difference is between a user-signed access token and the token I'm using. How can I get this to work?