Bear with me, I know access_token questions have been asked a thousand times but I can't seem to find an answer to this specific question.
Is there an expiration date for Facebook Page (not app, not user) access tokens?
I know that:
offline_accesshas been deprecated.- I can request a 60-day user
access_token
Step 1: I use Facebook Connect and I get a user access_token which has the manage_pages permission (by default, this token expires in 2 hours, extendable to 60 days)
Step 2: I then call /me/accounts and get an array of the user's pages each one with a listed page access_token
Step 3: I can use the page access_token in subsequent API calls to do things like posting to the user's page.
I need users to be able to schedule page updates to happen in the future (when they will not be online).
So again the question is:
- What is the expiration date of the page
access_tokenreturned from/me/accounts?
If the expiration date is tied to something, what is it tied to?
- Expiration date of the user
access_tokenused when requesting/me/accounts? - 60-days from when the request is made to
/me/accounts?
I apologize for my confusion, the Facebook documentation seems to fall extremely short in describing these access tokens.