1
votes

I have develop a mobile app that use twitter fabric to login with twitter. Fabric gave me user id, user name and two tokens called "authToken" and "authTokenSecret". I want to verify the user on server side. I can do it easily in facebook with this query: http://graph.facebook.com/endpoint?key=value&access_token=app_id|app_secret (ref) In facebook, I used only one token and one url. But in twitter I have two tokens and I have no url. What should I do to verify login on the server side?

1

1 Answers

1
votes

You should be able to use Twitter's account/verify_credentials endpoint to do this. There's a similar question relating to Digits on the Twitter developer community forums which might be helpful.