Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Facebook authentication for my Android App.

I authenticate the user in my app using facebook ID [throught HTTP Post to Web API with facebook-id]. So If someone get to know the facebook-id of any user in my app, they can easily post to the URL which gave them access to the app.

Is there any recommended way to do this?

share|improve this question

2 Answers

Once you made the login POST, facebook will give you an authtoken which is unique but it will expire sometime. Based on this token generate a temporary "session_key" (it could be md5(facebook_token + user_id), store this session_key in you db and send it back to your application.

With each request from app to your server, you have to send this session_key and the username. On server-side, you have to check if the session_key is in your database and if it was assigned to "user_id".

If everything is ok, you can continue the action otherwise return an error message.

When the user log out, remove this session_key(it will be regenerated when he will login with facebook).

Hope this will help.

share|improve this answer
I am using App access token, which will not expire and is same for all users. – Eldhose John Jul 10 '12 at 15:35

When a user log into Facebook, it gives you an auth token and facebook id. Validate in your app server, whether the token belongs to the user [ via https://graph.facebook.com/me?accesstoken=]. Grant him access, if its valid.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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