Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Without seeing exactly what you're doing it's hard to know, but here's some possible solutions:</p> <p>First off, your app will always need to remove the request, unlike the old style requests, the app is responsible for clearing requests once they're accepted and they're not removed automatically because the user accepted them- this is covered here: <a href="https://developers.facebook.com/docs/reference/dialogs/requests/#deleting" rel="nofollow">https://developers.facebook.com/docs/reference/dialogs/requests/#deleting</a></p> <p>You should be able to use an App Access token to remove a request which was sent by your app regardless of what permissions you have for the recipient user (although based on your description above you should be OK to use the user access token you have for the recipient):</p> <ul> <li>Instructions for getting an app access token are at <a href="https://developers.facebook.com/docs/authentication/#applogin" rel="nofollow">https://developers.facebook.com/docs/authentication/#applogin</a></li> </ul> <p>If you've enabled the migration settings for 'efficient' requests, the DELETE is of the format <code>DELETE <a href="https://graph.facebook.com/" rel="nofollow">https://graph.facebook.com/</a>[&lt;request_id&gt;_&lt;user_id&gt;]?access_token=[USER or APP ACCESS TOKEN]</code></p> <p>If you haven't, it will be of the format</p> <p><code>DELETE <a href="https://graph.facebook.com/" rel="nofollow">https://graph.facebook.com/</a>[request_id]?access_token=[USER OR APP ACCESS_TOKEN]</code></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload