I'm implementing an app in "Dialog Flow
"
I'm sending request to app like this
$text = "Something";
$data = array(
"source" => $text,
"speech" => $text,
"displayText" =>$text,
"contextOut" => array()
);
header('Content-Type: application/json');
echo json_encode($data);
The text displayed in app. but mic is open I want turn off the mic .
I tried expectUserResponse
but not working
array(
"expectUserResponse" => false,
"source" => $text,
"speech" => $text,
"displayText" =>$text,
"contextOut" => array()
)
Please help.