您需要通过
speech
text-in
fullmenttext
和
displaytext
in
fullmentmessages
in v2 api.
< PRE> >代码>
“fullmenttext”:“这将是演讲。”,
“完成消息”:。[
{
“文本”:{
“文本”:
“这将是要在屏幕上显示的文本。”
]
}
}
]
}
< /代码>
如果您没有通过webhook上的
fullmentmessages
,那么
fullmenttext
will be displayed on screen.
响应的基本结构在本页上给出。
要发送的示例代码(python)
fullfillmenttext
:。
导入json
req=req_从webhook调用中获取
res=json.dumps({
“fullmenttext”:“来自Webhook的响应”,
})
收益率
< /代码>
在V2 API中。
{
"fulfillmentText": "This will be speech.",
"fulfillmentMessages": [
{
"text": {
"text": [
"This will be text to be displayed on screen."
]
}
}
]
}
万一你不通过
完成消息
从网络钩子,然后
完成文本
将显示在屏幕上。
响应的基本结构如下:
this page
.
要发送的示例代码(python)
完成文本
:
import json
req = req_you_get_from_webhook_call
res = json.dumps({
'fulfillmentText': 'response from the webhook',
})
return res