Let's assume the following situation for a canvas app:
i) day 1:
- Facebook app is created which needs
read_stream,publish_stream,offline_access permissions. When a
user comes to app for first time, authorize call redirects the user
to a permission ALLOW / DENY screen , and when the user allows it
redirects the user back to canvas url.
The canvas url has access_token in a signed request in its request parameters which can then be used to run the app.
No permission dialog is needed for same user coming to the app next time, as signed_request contains acess_token if the user had authorized the app in past.
The code looks like:
if(access_token received from signed request)
// do something with user information
else
// redirect user for authorization flow
ii) day 2: - Now, let's say I want to add one more permission to my list, user_birthday
read_stream,publish_stream,offline_access,user_birthday`
Now the following logic will have problems
if(access_token received from signed request)
// do something with user information <-- the access_token does not have new permission
else
// redirect user for authorization flow
How can this additional permission addition be tackled efficiently, as API calls affect the performance of the app? I would not want to use something like :
https://graph.facebook.com/me/permissions?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Every time the application loads to check the permissions related to the token.

