操作包 (Dialogflow)
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
您可以使用 Actions SDK 创建本地化的 Action,方法是
适用于每个语言区域的 Action 包,然后将其上传到您的 Actions 项目
使用 gactions
工具。
如需使用 Actions SDK 创建本地化 Action,请执行以下操作:
- 为您想支持的每个语言区域创建单独的 Action 包,
为它们指定本地名称,例如
action.de.json
和 action.en.json
。
或者,您也可以在项目中为
已本地化的操作包和其他资源文件。
- 在您的 Action 软件包顶部添加包含相应语言的
locale
元素
或语言区域。此外,请提供经过本地化的查询
这样用户就可以针对
。例如:
{
"locale": "de",
"actions": [
{
"intent": {
"name": "actions.intent.MAIN",
"trigger": {
"queryPatterns": [
"<Insert German query patterns here>"
]
}
}
}
]
}
- 使用
gactions
工具上传您的
将操作包添加到 Actions 项目中,指定每个已本地化版本
操作包。例如:
./gactions update --project my-project-id --action_package action.de.json --action_package action.en.json --action_package action.fr.json --action_package action.ja.json --action_package action.ko.json
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-09-11。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-09-11。"],[[["OAuth and Google Sign-In linking combines Google's authentication with custom logins for flexibility."],["This linking type is ideal for Actions needing cross-platform functionality and support for non-Google accounts."],["Users can create accounts using their Google profile, link existing accounts, or sign in with other providers."],["Developers can choose between authorization code or implicit flow based on security and implementation complexity."],["Account linking flows adapt based on service settings and user accounts to create secure and personalized experiences."]]],[]]