I'm building mobile application (with PhoneGap/Cordova). In order to use my app, the client must authenticate with facebook.
I would like to use that facebook auth mechanism for securing my wcf service. I was thinking of using it like that:
First registration:
- Client sign-in into facebook and gets an access token
- Client sends its access token to my wcf service
- In my service, i extend the access token (to get a long-lived token), and store it in DB with a new record for the new member
- I send response to the client with the extended token and the member id
- Client stores the token and member id in its mobile device
When the client enters the application:
- Client redirects to faceebok
- If authentication by facebook failed (may be because of various of reasons), he reauthorizes my application.
- Facebook redirect the client back to my application with new token
- If token is not changed (compared to the stored token in the device), break.
- Client sends my wcf service the old token + the new token
- The wcf compares the old token received with the stored token in db (using the member id) to identify the client, and raises exception if not equal.
- In my service, i extend the access token (to get a long-lived token), and store it in DB
- I send response to the client with the extended token
- Client overides the old token with the new one in its mobile device
For every request from my mobile application to my wcf service:
- The client sends the request and the first parameter it passes is its facebook token he stored in the device. the second parameter is the member id.
- The wcf compares the token received with the stored token in db (using the member id) to identify the client, and raises exception if not equal.
- process the request
For conclusion, i used the facebook token for identifying the client. in addition, i can use SSL for securing in the network level. Is this a good approach? Thank you for your help.