curl函数从pointhq.com获取区域

时间:2014-04-11 16:14:43

标签: php curl

curl -u" user@example.com:f9eca287-5346-1cc7-8529-68eb9db7cd5e" -H'接受:application / json' -H"内容类型:application / json" https://pointhq.com/zones

我怎样才能在php中调用它

1 个答案:

答案 0 :(得分:0)

我假设您使用的是基本身份验证,您可以使用以下内容;

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, "https://pointhq.com/zones"); 
curl_setopt($s,CURLOPT_HTTPHEADER,array('Accept: application/json', 'Content-type: application/json')); 
curl_setopt($ch, CURLOPT_USERPWD, "user@example.com:f9eca287-5346-1cc7-8529-68eb9db7cd5e");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); 

有关详细信息,请参阅here