I obtain an access token for Facebook account and pages associated with this account. I get tokens for both an account and pages. After 90 days the token data access expires, it is mentioned in the doc: https://developers.facebook.com/docs/facebook-login/auth-vs-data/ For the account after the expiration I get an empty response:
GET me/feed
{
"data": [
]
}
For the page access token, I still can get the page's feed with the same request
GET /me/feed
Why is that so? Doesn't the data access expiration apply to Page tokens?