我正在“ Dialog Flow
”中实现一个应用程序
我正在向这样的应用发送请求
$text = "Something";
$data = array(
"source" => $text,
"speech" => $text,
"displayText" =>$text,
"contextOut" => array()
);
header('Content-Type: application/json');
echo json_encode($data);
应用中显示的文本。但是麦克风是打开的,我想关掉麦克风。
我试过expectUserResponse
但没有工作
array(
"expectUserResponse" => false,
"source" => $text,
"speech" => $text,
"displayText" =>$text,
"contextOut" => array()
)
请帮忙。