Login to my app using facebook credentials

This question may sound to you, but I have to ask it.

I need to log in from my application to my server using Facebook credentials. Is this really possible? If so, answer me that.

+7
source share
3 answers

Facebook supports OpenID, which you can implement in your application.

http://developers.facebook.com/blog/post/246/

You can log in to stackoverflow using your facebook account, as it uses OpenID.

+2
source

Rohit, which will mean that you need to implement OpenID on your server. To do this, you need to write a couple of pages in your web application that take care of OpenID authentication .. then if you want your mobile users to log in using OpneID, you can simply open this web page (where you implemented OpenID ) from your application using any web view component or some other appropriate component, whatever it may be. Track the user's navigation to the success page to determine if the user is authenticated or not.

this is one way .. otherwise ... there may be other ways.

luck

0
source

You can check this two links:

From these two links you will get all the information for logging, sharing using facebook from your Android application.

0
source

All Articles