I\'m doing some testing in the wake of offline_access\'s expiration. I think that since all interactions my app makes with Facebook are done via my servers and are user ini
Another possible solution is to use a test account with a customized expiration time:
For view permissions
https://graph.facebook.com/v2.7/{userID}/permissions?access_token={acessToken}
For delete permissions add "method=delete"
before &access_token=
https://graph.facebook.com/v2.7/{userID}/permissions?method=delete&access_token={acessToken}