Is the following the right way to go, to login to a backend running App Engine(Could be any) with a Facebook account.
Scenario one:
- Login to facebook
- Get the token from the Facebook SDK (how do you get the token?)
- Use the Facebook token to send to the backend server
- On the backend, use the token send from the client to verofy the user on Facebook
- If 4 is a valid user, then create the user on the backend with username and token.
- Any further communication with the backend - the backend could then validate the user just on the backend with the user and token created on the backend.
At sone point, I thought of doing the following:
- Login to Facebook
- Have facebook redirect information to the backend
- Have the backend create user from any Facebook information
- Let the facebook login process return to the client/ios
- Then the user should use this token and user information to login to the backend.
Hope it make sense.