72e7341c3d
* refactor(core): import `getEnvAsStringArray` from `silverhand/essentials` * chore: bump `@silverhand/essentials` to `1.2.0` |
||
---|---|---|
.. | ||
docs | ||
src | ||
CHANGELOG.md | ||
jest.config.ts | ||
logo-dark.svg | ||
logo.svg | ||
package.json | ||
README.md | ||
tsconfig.base.json | ||
tsconfig.build.json | ||
tsconfig.json | ||
tsconfig.test.json |
Apple connector
The official Logto connector for Apple social sign-in.
Apple 社交登录 Logto 官方连接器 中文文档
Table of contents
Get started
If you don't know the concept of the connector or don't know how to add this connector to your Sign-in experience, please see Logto tutorial.
ℹ️ Note
Apple sign-in is required for AppStore if you have other social sign-in methods in your app. Having Apple sign-in on Android devices is great if you also provide an Android app.
You need to enroll Apple Developer Program before continuing.
Enable Sign in with Apple for your app
⚠️ Caution
Even if you want to implement Sign in with Apple on a web app only, you still need to have an existing app that embraces the AppStore ecosystem (i.e., have a valid App ID).
You can do it via Xcode -> Project settings -> Signing & Capabilities, or visit Certificates, Identifiers & Profiles.
See the "Enable an App ID" section in Apple official docs for more info.
Create an identifier
- Visit Certificates, Identifiers & Profiles, then click the "+" button next to "Identifier".
- In the "Register a new identifier" page, choose "Services IDs" and click "Continue".
- Fill out "Description" and "Identifier" (E.g.,
Logto Test
andio.logto.test
), then click "Continue". - Double-check the info and click "Register".
Enable Sign in with Apple for your identifier
Click the identifier you just created. Check "Sign in with Apple" on the details page and click "Configure".
In the opening modal, select the App ID you just enabled Sign in with Apple.
Enter the domain of your Logto instance without protocol and port, e.g., your.logto.domain
; then enter the "Return URL" (i.e., Redirect URI), which is the Logto URL with /callback/apple-universal
, e.g., https://your.logto.domain/callback/apple-universal
.
Click "Next" then "Done" to close the modal. Click "Continue" on the top-right corner, then click "Save" to save your configuration.
⚠️ Caution
Apple does NOT allow Return URLs with HTTP protocol and
localhost
domain.If you want to test locally, you need to edit
/etc/hosts
file to map localhost to a custom domain and set up a local HTTPS environment. mkcert can help you for setting up local HTTPS.
Compose the connector JSON
You need to use the identifier that fills in the Create an identifier section to compose the JSON:
{
"clientId": "io.logto.test"
}
ℹ️ Note
This connector doesn't support customizing
scope
(e.g., name, email) yet since Apple requiresform_post
response mode whenscope
is not empty, which is incompatible with the current connector design.We'll figure out this later.
Test Apple connector
That's it. The Apple connector should be available in both web and native apps. Don't forget to Enable connector in sign-in experience.
Apple 连接器
开始上手
如果你还不知道连接器的概念,或者还不知道如何将本连接器添加至你的「登录体验」,请先参见 Logto 教程。
ℹ️ Note
如果你的应用有其他的社交登录方式,AppStore 要求必须同时有 Apple 登录。 如果同时提供 Android 应用,在 Android 设备上同时提供 Apple 登录会让用户体验很棒。
在继续前,你需要加入 Apple Developer Program。
为你的应用启用「通过 Apple 登录」
⚠️ Caution
即使你只想在 web 应用中实现「通过 Apple 登录」,你仍需要拥有一个拥抱 AppStore 生态的应用(即:有一个有效的 App ID)。
你可以通过 Xcode -> Project settings -> Signing & Capabilities 来启用,或者访问 Certificates, Identifiers & Profiles。
参见 Apple 官方文档 里的「Enable an App ID」章节以了解更多。
创建一个 identifier
- 访问 Certificates, Identifiers & Profiles,并点按在「Identifier」旁边的「+」按钮。
- 在「Register a new identifier」页面,选择「Services IDs」并点按「Continue」。
- 填写「Description」与「Identifier」(例如
Logto Test
和io.logto.test
),并点按「Continue」。 - 再次检查相关信息并点按「Register」。
为你的 identifier 启用「通过 Apple 登录」
点按你刚刚创建的 identifier。在详情页勾选「Sign in with Apple」并点按「Configure」。
在打开的对话框中,选择刚刚启用了「通过 Apple 登录」的 App ID。
输入你的 Logto 实例域名(不含协议和端口),例如 your.logto.domain
;并输入「Return URL」(即 Redirect URI)。Return URL 的值是 Logto URL 加上 /callback/apple-universal
,例如 https://your.logto.domain/callback/apple-universal
。
点按「Next」以及「Done」以关闭对话框。点按右上角的「Continue」,接着点按「Save」以保存你的配置。
⚠️ Caution
Apple 不允许 HTTP 协议或
localhost
域名作为 Return URL。如果你想在本地进行测试,你需要编辑
/etc/hosts
文件以映射 localhost 到一个自定义域名,并设置一个本地的 HTTPS 环境。mkcert 可以帮助你设置本地 HTTPS。
编写连接器的 JSON
你需要使用在 创建一个 identifier 章节中填写的 identifier 来编写此 JSON:
{
"clientId": "io.logto.test"
}
ℹ️ Note
本连接器暂时不支持自定义
scope
(例如 name,email)。因为在scope
非空时,Apple 要求response_mode
为form_post
,与现在连接器的设计不兼容。我们将稍后解决这个问题。
测试 Apple 连接器
大功告成。Apple 连接器应该在 web 和原生应用中都可用了。别忘了 在登录体验中启用本连接器。