我正在使用谷歌翻译API,我可能会发送相当多的文本进行翻译。在此场景中,Google建议您执行以下操作:
如果要发送更多数据,也可以使用POST来调用API 在一个请求中。 POST主体中的q参数必须小于 超过5K字符。要使用POST,您必须使用 X-HTTP-Method-Override标头告诉Translate API处理 请求作为GET(使用X-HTTP-Method-Override:GET)。 Google Translate API Documentation
我知道如何使用CURL进行正常的POST请求:
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
但是如何修改标头以使用X-HTTP-Method-Override? p>
答案 0 :(得分:6)
curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET') );
答案 1 :(得分:1)
http://php.net/manual/en/function.curl-setopt.php
<强> CURLOPT_HTTPHEADER 强>
要设置的HTTP标头字段数组,格式为
array('Content-type: text/plain', 'Content-length: 100')
因此,
curl_setopt($curl, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
答案 2 :(得分:0)
使用CURLOPT_HTTPHEADER
选项从字符串数组中添加标题
答案 3 :(得分:0)
对我来说还不行,我需要在数据发布数据中使用http_build_query 我的完整例子:
$param = array(
'key' => 'YOUR_API_KEY_HERE',
'target' => 'en',
'source' => 'fr',
"q" => 'text to translate'
);
$formData = http_build_query($param);
$headers = array( "X-HTTP-Method-Override: GET");
$ch=curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$formData);
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers );
curl_setopt($ch, CURLOPT_REFERER, 'http://yoursite'); //if you have refere domain restriction for your google API KEY
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,'https://www.googleapis.com/language/translate/v2');
$query = curl_exec($ch);
$info = curl_getInfo($ch);
$error = curl_error($ch);
$data = json_decode($query,true);
if (!is_array($data) || !array_key_exists('data', $data)) {
throw new Exception('Unable to find data key');
}
if (!array_key_exists('translations', $data['data'])) {
throw new Exception('Unable to find translations key');
}
if (!is_array($data['data']['translations'])) {
throw new Exception('Expected array for translations');
}
foreach ($data['data']['translations'] as $translation) {
echo $translation['translatedText'];
}
我在这里找到了这个帮助https://phpfreelancedeveloper.wordpress.com/2012/06/11/translating-text-using-the-google-translate-api-and-php-json-and-curl/ 希望有所帮助