對話動作已於 2023 年 6 月 13 日淘汰。詳情請參閱「
對話動作已淘汰」。
動作套件 (Dialogflow)
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
如有需要,您可以使用 Actions SDK 建立本地化動作
每個語言代碼的動作套件,然後將這些套件上傳至 Actions 專案
使用 gactions
工具。
如要使用 Actions SDK 建立本地化動作,請按照下列步驟操作:
- 針對您想支援的每個語言代碼建立個別的動作套件。
為各個語言提供本地化名稱,例如
action.de.json
和 action.en.json
。
您也可以在專案中建立子目錄
本地化動作套件和其他資源檔案。
- 在使用語言的動作套件頂端新增
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
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間: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"]],["上次更新時間: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."]]],[]]