這是命令行:轉換捲曲命令行PHP
curl --silent --header "Authorization: MyLogin auth=xxxxxxxxxxxxxxxxxxx" "https://www.myweb.com/"
我這是我(試過各種變化與頭)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.myweb.com");
curl_setopt($ch,CURLOPT_HTTPHEADER,array('Authorization: MyLogin','auth: xxxxxxxxxxxxxxxxxxx'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
我想我搞亂在頭部分,任何幫助將不勝感激。謝謝。
添加*這就是我實際上
http://code.google.com/apis/gdata/articles/using_cURL.html#authenticating
我只是改寫了它的工作,現在,它的作品,這是我所:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Authorization: GoogleLogin auth=$authCode"));
//curl_setopt($ch, CURLINFO_HEADER_OUT, true); // for debugging the request
//var_dump(curl_getinfo($ch,CURLINFO_HEADER_OUT)); //for debugging the request
$response = curl_exec($ch);
curl_close($ch);
echo $response;
是的,我已經試過這種方式,以及=而不是:,謝謝。我想我可能會調用錯誤的頭部類型的調用,但我不知道還有什麼其他用途。 – iamdamnsam