PHP を使用して webhook を呼び出すと、テスト中にこのメッセージが表示されます。申し訳ありませんが、応答がありませんでした Webhook リクエストの json と php コードを添付しました
if($method == 'POST')
{
$requestBody = file_get_contents('php://input');
$json = json_decode($requestBody, true, 512, JSON_BIGINT_AS_STRING);
$customer_name=$json["requestJson"]["intent"]["params"]["customer_name"]["resolved"];
$response = array ('prompt' => array ('firstSimple' => array ( 'speech' => $customer_name, 'text' =>
$customer_name)));
echo json_encode( $response );
}
テスト中にWebhookレスポンスjsonも
{
"responseJson": {
"prompt": {
"firstSimple": {}
}
}
}
Webhook リクエスト json