我已经在PHP中集成了Smartsheet api,我可以创建webhook并启用它。当在工作表中进行更改时,它会触及回调网址。我没有收到任何与此更改相关的数据。我已将数据记录为$ _POST,这是空的。
function smartWebhook_post(){
log_message('error','SS data: '.print_r($_POST,true), '', 'smartsf');
$this->response(array('HTTP status'=>200));
}
根据文档,必须发回HTTP状态200。
答案 0 :(得分:0)
每个webhook回调都有一个JSON正文。所以我更仔细地看看你如何处理POST有效载荷。
请注意,第一次回调将是http://smartsheet-platform.github.io/api-docs/?javascript#webhook-verification
的验证请求