We are currently introducing facebook and twitter login functionality for our users both on our website as well as mobile app.

The current issue I have is with facebook tokens, I have noticed that when a user tries logging through facebook the token returned on my website and mobile app are different.

What is the best way to manage these tokens to prevent duplicate registration of users. Each user when logs in creates a basic profile in our database which is linked to the access token. I also use offline_access permission.

Now when this user uses the mobile app a different token is returned and a duplicate profile may be created. How do I prevent this situation, I need the same profile to be detected on the website as well as mobile.

link|improve this question

60% accept rate
A quick remark: that «56% accept rate» on your badge will deter people from answering. I suggest you improve it. – Júlio Santos Feb 19 at 10:03
if you mean the FB User ID by "token", then my app is returning the same token on the desktop and mobile and can detect the user easily. – Arjun Bajaj Feb 19 at 10:06
feedback

2 Answers

up vote 4 down vote accepted

The way you do it is, don't identify users by their access tokens, but by their Facebook user ids.

Just GET https://graph.facebook.com/me?access_token=ACESS_TOKEN and you will be returned the basic information about the user, which includes their Facebook user id.

link|improve this answer
feedback

Just like what Julio said, refer this question for more information. You should use the generated token to verify fb user id

Devise Omniauth and Iphone/Android App

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.