- In this guide, we assume you have basic knowledge of Logto Connectors. If you don't, check out the Configure connectors guide to get started.
Facebook connector
The official Logto connector for Facebook social sign-in.
Table of contents
Get started
The Facebook connector provides a concise way for your application to use Facebook's OAuth 2.0 authentication system.
Register a Facebook developer account
Register as a Facebook Developer if you don't already have one
Set up a Facebook app
- Visit the Apps page.
- Click your existing app or create a new one if needed.
- The selected app type is up to you, but it should have the product Facebook Login.
- On the app dashboard page, scroll to the "Add a product" section and click the "Set up" button on the "Facebook Login" card.
- Skip the Facebook Login Quickstart page, and click the sidebar -> "Products" -> "Facebook Login" -> "Settings".
- In the Facebook Login Settings page, fill
${your_logto_origin}/callback/${connector_id}
in the "Valid OAuth Redirect URIs" field. Theconnector_id
can be found on the top bar of the Logto Admin Console connector details page. E.g.:https://logto.dev/callback/${connector_id}
for productionhttps://localhost:3001/callback/${connector_id}
for testing in the local environment
- Click the "Save changes" button at the bottom right corner.
Compose the connector JSON
- In the Facebook app dashboard page, click the sidebar -> "Settings" -> "Basic".
- You will see the "App ID" and "App secret" on the panel.
- Click the "Show" button following the App secret input box to copy its content.
- Fill out the Logto connector settings:
- Fill out the
clientId
field with the string from App ID. - Fill out the
clientSecret
field with the string from App secret. - Fill out the
scope
field with a comma or space separated list of permissions in string. If you do not specify a scope, the default scope isemail,public_profile
.
- Fill out the
Test sign-in with Facebook's test users
You can use the accounts of the test, developer, and admin users to test sign-in with the related app under both development and live app modes.
You can also take the app live directly so that any Facebook user can sign in with the app.
- In the app dashboard page, click the sidebar -> "Roles" -> "Test Users".
- Click the "Create test users" button to create a testing user.
- Click the "Options" button of the existing test user, and you will see more operations, e.g., "Change name and password".
Publish Facebook sign-in settings
Usually, only the test, admin, and developer users can sign in with the related app under development mode.
To enable normal Facebook users sign-in with the app in the production environment, you maybe need to switch your Facebook app to live mode, depending on the app type. E.g., the pure business type app doesn't have the "live" switch button, but it won't block your use.
- In the Facebook app dashboard page, click the sidebar -> "Settings" -> "Basic".
- Fill out the "Privacy Policy URL" and "User data deletion" fields on the panel if required.
- Click the "Save changes" button at the bottom right corner.
- Click the "Live" switch button on the app top bar.
Config types
Name | Type |
---|---|
clientId | string |
clientSecret | string |
scope | string |