我需要在我的API curl的PHP代码中添加一些过滤器的正文内容我该怎么做
我需要添加到我的API调用中
下面是API调用代码
$chn = curl_init();
curl_setopt($chn, CURLOPT_POST, true);
curl_setopt($chn, CURLOPT_URL, 'https://api.livechatinc.com/v3.4/agent/action/list_archives');
curl_setopt($chn, CURLOPT_RETURNTRANSFER, true);
curl_setopt($chn, CURLOPT_POSTFIELDS, '{}');
curl_setopt($chn, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Authorization: Bearer ' . $token
)
);
2条答案
按热度按时间dwthyt8l1#
8cdiaqws2#
通过在CURLOPT_POSTFIELDS选项中以字符串形式传递数据,可以将请求正文添加到API调用中。