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.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.