I call FB.UI to allow user to select friends that will receive an app invite:
FB.ui(
{
method:'apprequests',
//...
filters:['app_non_users']
}, ...
In the callback function I get the requestId and the the array of user id's that received an invite.
So far so good.
Now when a user clicks on the invite he is redirected to my app url. FB sends the requestID as part of the query string.
Let's say the request was accepted by a user which has not authorized my app. yet. Now I would like to delete the request, but this is where the problem starts.
I cannot delete the request with a user access token, because user has not granted my app any permissions yet. This rules out the javascript sdk.
I cannot use the app access token because I need the userId of the receiving user in order to delete it:
From the docs:
Issue an HTTP DELETE request to the concatenated request_id: DELETE https://graph.facebook.com/[_]? access_token=[USER or APP ACCESS TOKEN]
But I do not know who this user is just yet. How am I supposed to delete the request? Am I supposed to wait until the user authorizes the app? What if he never does?
Am I missing something?
Thank you!