1
phpとcURLを使用してxmlをポストすることで、プログラムでカスタム検索エンジンにアノテーション(検索サイト)を追加しようとしています。彼らの開発者向けドキュメントによると、私がする必要があるすべては、次のとおりです。Googleカスタム検索APIは、cURLを使用してPHPを使用してプログラムでアノテーションを追加する
POST http://www.google.com/cse/api/default/annotations/
Content-Type: text/xml
Authorization: GoogleLogin auth="IM6F7Cx2fo0TAiwlhNVdSE8Ov8hw6aHV"
<Batch>
<Add>
<Annotations>
<Annotation about="http://www.solarenergy.org/*">
<Label name="_cse_solar_example"/>
</Annotation>
<Annotation about="http://www.solarfacts.net/*">
<Label name="_cse_solar_example"/>
</Annotation>
<Annotation about="http://en.wikipedia.org/wiki/*">
<Label name="_cse_exclude_solar_example"/>
</Annotation>
</Annotations>
</Add>
</Batch>
しかし、私は次のコードを使用する場合、私はエラー411を取得し、「POSTリクエストはContent-Lengthヘッダを必要とする」
function getAuthorizationToken(){
$ch = curl_init();
$url = 'https://www.google.com/accounts/ClientLogin?accountType=HOSTED_OR_GOOGLE&Email=***&Passwd=***&service=cprose&source=***';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$authTokenData = curl_exec($ch);
$authTokenArray = explode('Auth=', $authTokenData);
$authToken = $authTokenArray[1];
curl_close($ch);
return $authToken;
}
$authToken = getAuthorizationToken();
$url = 'http://www.google.com/cse/api/default/annotations/';
$xml_data = '<?XML version="1.0"?>
<Batch>
<Add>
<Annotations>
<Annotation about="http://www.solarenergy.org/*">
<Label name="_cse_solar_example"/>
</Annotation>
<Annotation about="http://www.solarfacts.net/*">
<Label name="_cse_solar_example"/>
</Annotation>
<Annotation about="http://en.wikipedia.org/wiki/*">
<Label name="_cse_exclude_solar_example"/>
</Annotation>
</Annotations>
</Add>
</Batch>';
$length = strlen($xml_data);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_HTTPHEADER, Array("Authorization: GoogleLogin auth=". $authToken, "Content-Type: text/xml", "Content-Length: " . $length));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // ask for results to be returned
$result = curl_exec($ch);
curl_close($ch);
echo $result;
私はこの問題を非常に長い間苦労してきました。
は
あなたはおそらく他のものを変更しましたか?残念なことに私のコードをあなたの提案で変更した後でも残念ながら私のために働いていません – Lee
いいえ、私はしませんでした。他のすべては同じように見えます。 –