我试过但没有成功。我尝试了不同的选项,但响应是扔401或没有响应。在API文档中,我所拥有的只是基本指令,您可能认为我是cURL的新手。
API文档:https://docs.sendcloud.sc/api/v2/index.html?shell#get-all-parcels
这是我到目前为止的代码:
$url = "https://panel.sendcloud.sc/api/v2/parcels";
// Initiate curl
$ch = curl_init();
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Disable SSL verification
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute
$result=curl_exec($ch);
// Closing
curl_close($ch);
$arr = json_decode($result, true);
print_r($arr);
感谢。