Renew (or Exchange )access token (without admin user interaction) from the access token which is about to expire
Hello,
I have access tokens for the users which is stored in the database. A CRON job runs every day and fetch details of new products and post to application fan page behalf of page.
But as the facebook tokens expires every 60 days it is needed to be renewed. But the issue is that in the renewal process user interaction should not be involved.
We need to exchange the token which is about to expire with the new token. There is no any documentation for the same.
We want the CRON job to check which are the tokens about to expire and renew them immediatly without user intervention.Is there any way to make it possible without ping the below url daily
Any help would be appreciable.
Thanks!!
Renewing user access token is not possible without user intervention. The user must interact, and you'll get fresh normal access token and exchange that with the extended token. According to the documentation:
After doing the above you will obtain a new short-lived token and then you need to perform the same exchange for a long-lived token as above.
If page access token can do your deed, you can get the never-expiring page token. See this answer: What are the Steps to getting a Long Lasting Token For Posting To a Facebook Fan Page from a Server