For a Facebook app that I am building, I require longer time than the default 1 - 2 hours.
I don't want to use "offline_access" as it puts people off from signing up to the app and is now depreciated.
In the developer road map it talks about "fb_exchange_token" which will extend the access token expiry date to 1 month.
The flow is:
Login User
Call .../oauth/access_token?...&grant_type=fb_exchange_token&fb_exchange_token=...
- Access token is now 1 month long
This works fine for all the new users, and for users who delete the app from their Facebook account and re-add it, but for our existing customer base, it doesn't work.
I have tried all sorts including adding other permissions to the login script to force the authenticate window, but no luck.
I have added the correct advanced/migration setting for the Facebook app as described in the documentation. There doesn't appear to be much help on this, apart from the dev blog.
Any help will be greatly appreciated.
FYI: I'm using the most up-to-date PHP SDK and the code to get the new access token is just the standard cURL request pointing to the following url:
https://graph.facebook.com/oauth/access_token?client_id={APPID}&client_secret={APPSECRET}&grant_type=fb_exchange_token&fb_exchange_token={ACCESSTOKEN}
Thanks again