8.4 KiB
Facebook connector
The official Logto connector for Facebook social sign-in.
Facebook 社交登录 Logto 官方连接器 中文文档
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/facebook-universal
in the "Valid OAuth Redirect URIs" field. E.g.:https://logto.dev/callback/facebook-universal
for productionhttps://localhost:3001/callback/facebook-universal
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
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 |
References
Facebook 社交连接器
开始上手
Facebook 连接器为你提供了通过 Facebook 的 OAuth 2.0 授权系统注册、登录的方法。
创建一个 Facebook 开发者帐号
创建并设置一个 Facebook 应用
- 访问 应用。
- 点按你已存在的应用或者按需 创建应用。
- 由你来选择合适的 应用类型,但需要包含 Facebook 登录 产品。
- 在应用「控制面板」,在侧边栏找到「添加产品」部分,然后点按「Facebook 登录」卡片上的「设置」按钮。
- 跳过 Facebook 登录快速启动页,然后点击侧边栏 -> 「产品」->「Facebook 登录」->「设置」。
- 在 Facebook 登录设置页,在「跳转 URI 来检查」栏中填入
${your_logto_origin}/callback/facebook-universal
,例如:- 在产品环境中可以填:
https://logto.dev/callback/facebook-universal
- 在本地测试环境中可以填:
https://localhost:3001/callback/facebook-universal
- 在产品环境中可以填:
- 点按页面右下角的「保存更改」按钮。
编写连接器的 JSON
- 在 Facebook 应用「控制面板」,从侧边栏,点按「设置」->「基本」。
- 在面板中你会看到 应用编号 和 应用密钥。
- 点按在「应用秘钥」右边的「显示」按钮,然后复制内容。
- 填写 Logto 连接器设置:
- 用 应用编号 里找到的信息填写
clientId
栏。 - 用 应用密钥 中的信息填写
clientSecret
栏。
- 用 应用编号 里找到的信息填写
用 Facebook 的测试用户来测试登录
你可以用测试帐号、开发者帐号或者管理员帐号在开发环境或者真实环境下测试相关应用的登录流程。了解 应用模式。
你可以把应用发布从而让所有 Facebook 用户都能登录应用。
- 在应用的控制面板,从侧边栏 ->「用户身份」->「测试用户」。
- 点按「创建测试用户」按钮来创建一个测试用户。
- 点按已有测试用户的「选项」按钮,你可以看到诸如「更改名字或密码」等更多选项。
发布 Facebook 应用
通常,只有测试帐号、开发者帐或者管理员帐号才可以在 开发者模式 下登录相应的应用。
为了让一般 Facebook 用户可以登录到生产环境,你可能需要将你的 Facebook 应用发布。但这又会随着你的应用类型而有所不同。 例如,Business 类型的应用没有「Live」开关按钮。
- 在 Facebook 应用「控制面板」,从侧边栏 ->「设置」->「基本」。
- 按需填写 隐私权政策网址 和 用户数据删除 栏。
- 点按右下角「保存更改」按钮。
- 点按应用顶栏的「Live」按钮。
配置类型
名称 | 类型 |
---|---|
clientId | string |
clientSecret | string |