How do I allow users of my site to register through Facebook and integrate the Facebook login system with my own login system?

I just got lost and don’t know where to start, please show me the documentation that I can read so that users can register / log in to my site using Facebook.

Assuming that

  • I have my own registration / login system.

How can I

  • Sign in with your Facebook profile
  • Register users quickly with your Facebook profile if they are not registered.

Any ideas or documents are welcome.

+5
source share
1 answer

facebook https://developers.facebook.com/apps. :

<iframe src="https://www.facebook.com/plugins/registration?
             client_id=YOUR_APP_ID&
             redirect_uri=https%3A%2F%2Fdevelopers.facebook.com%2Ftools%2Fecho%2F&
             fields=name,birthday,gender,location,email"
        scrolling="auto"
        allowTransparency="true"
        width="100%"
        height="400">
</iframe>

: https://developers.facebook.com/docs/plugins/registration/

+7

All Articles