3

当我使用 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

在此处输入图像描述

4

1 回答 1

2

尽管它显示在测试控制台中,但“requestJson”属性并不是发送给您的正文的一部分。正文将只包含该属性下的对象。

所以得到的线$customerName应该更像

 $customer_name=$json["intent"]["params"]["customer_name"]["resolved"];

您收到有关未收到响应的错误的具体原因是因为响应的“simpleResponse”属性中没有设置任何属性。我假设这是因为$customer_name最终没有设置,所以 php 或 Assistant 正在删除 null 属性值。

于 2021-04-06T15:05:38.827 回答