Ok, lets assume the following workflow:
Client ----> Server (I Want to login via-facebook, here is the Auth Token from Js Sdk)
Server ----> Facebook (Get permissions list)
Server ----> Client (Redirect-login, to OK ALL DONE)
How do you go about from here, to ensure the client has a specific permission before you show them another page? Ie:
Client ----> Server (I want page at url XXX)
Server ----> Database (Permission list has the needed permissions for this url, so ok)
Server ----> Client (Permission list was ok, here is the page)
However, the client could at some point have revoked some permissions, or even removed access completely from the server. So, instead of storing the permissions to the DB we need to actually ask facebook each time we need to ensure access, like so:
Client ----> Server (I want page at url XXX)
Server ----> **Facebook** (Permission list has the needed permissions for this url, so ok)
Server ----> Client (Permission list was ok, here is the page)
Of course this workflow doesnt scale, would make load times tremendous, and is in general wrong. Is there an alternative way to ensure that the client is authorized (and for specific permissions) before loading the page?