I'm trying to obtain a deeper understanding of access token requirements in relation to reading the Events a Page is attending from graph.facebook.com.
Firstly, why is an access token required to read a list of Events a Page is attending, when this information is publicly available from Facebook?
The documentation is as follows:
https://developers.facebook.com/docs/reference/api/page/
This says that to access the Events connection for the Page, I need "any valid token, or a user access token" to read the Events a Page is attending.
What exactly is "any valid token"?
My application is presented in a Page Tab, so it can read the 'oauth_token' that is passed in the Signed Request that is sent to every app presented in a Page Tab. If I use this token when querying the Graph for Events a Page is attending, it seems to work, but I don't understand what the relationship is between this token and the Page Events. I always thought this token related to the user who was using the app.
Is it the case that "any valid token" means any token issued by Facebook for anything provided that token hasn't expired?
If so, what's the point in requiring a token at all?