我正在使用卷曲。我想通过 Curl 访问 url。当我直接访问 url 时,它工作正常。但通过 curl 它不显示任何内容。这是我的代码
$baseurl="https://www.addressfinder.co.nz/api/address?q=184+willis+st%2C+te+aro%2C+wellington+6011&key=9QTP8F3CHXEVU7WGYA6J&secret=KQLTAXY46M39RGHBFC8W&format=json";
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $baseurl);
curl_setopt($ch, CURLOPT_HEADER, false);
// grab URL and pass it to the browser
$res=curl_exec($ch);
echo $res;
它什么也不显示。谁能告诉我如何做到这一点。谢谢