每个 smart home 操作都必须包含一种机制 对用户进行身份验证
通过身份验证,您可以将用户的Google 账号 验证系统中的用户账号这样,您就可以在以下情况中识别您的用户 你的执行方式会接收智能家居 intent。Google 智能家居仅支持具有 授权代码流程。
获得 OAuth 2.0 实现后,您可以根据需要配置 基于 OAuth 的 App Flip,允许 让您的用户更快地在您的身份验证系统中关联他们的账号 自己的 Google 账号。
OAuth
对于 smart home,您必须使用包含授权代码的 OAuth 该流程要求您有两个端点: 授权端点和令牌交换端点。
在您对用户进行身份验证后,该用户的第三方 OAuth 2.0 访问权限
收到 smart home 时,
intent 会发送到你的执行方式。所有用户都必须执行账号操作
因为系统会将设备信息发送到
Google Assistant 与 action.devices.SYNC
intent,这需要关联账号。
你的 smart home Action 应该会支持多个 Google 连接到同一用户账号的用户(例如,当用户授予访问权限时 家庭其他用户)。如果您的服务不支持 用户连接,则应该在账号关联时提供错误。
如需了解如何为 Action 设置 OAuth 2.0 服务器,请参阅实现 OAuth 2.0 服务器。
基于 OAuth 的应用快速关联
OAuth-based App Flip Linking (App Flip) allows your users to easily and quickly link their accounts in your authentication system to their Google accounts. If your app is installed on your user’s phone when they initiate the account linking process, they are seamlessly flipped to your app to obtain user authorization.
This approach provides a faster and easier linking process since the user does not have to re-enter their username and password to authenticate; instead, App Flip leverages the credentials from the user's account on your app. Once a user has linked their Google account with your app, they can take advantage of any integrations that you have developed.
You can set up App Flip for both iOS and Android apps.
Requirements
To implement App Flip, you must fulfill the following requirements:
- You must have an Android or iOS app.
- You must own, manage and maintain an OAuth 2.0 server which supports the OAuth 2.0 authorization code flow.
如需详细了解 OAuth 关联授权代码流,请参阅实现 OAuth 2.0 服务器。
如需了解如何为您的 Google Workspace 账号配置 App Flip, 有关操作,请参阅基于 OAuth 的 App Flip。