1
我有這樣的代碼:捲曲的,使得HTTP請求Yandex的翻譯API怪異的行爲(錯誤400)使得當HTTP請求
const char url[] = "https://translate.yandex.net/api/v1.5/tr.json/translate";
const char key[] = "secret.key.here";
char buf[4096] = { 0 };
char input[1024] = "Hello world. H";
snprintf(buf, sizeof(buf), "%s?key=%s&lang=ru&text=\"%s\"",
url, key, input);
struct string response;
init_string(&response);
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, buf);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
res = curl_easy_perform(curl);
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
}
curl_easy_cleanup(curl);
}
printf("%s\n", response.data);
後snprintf
執行,buf
包含此類網址:
https://translate.yandex.net/api/v1.5/tr.json/translate?key=secret.key.here&lang=ru&text="Hello world. H"
並在迴應後,response.data
包含:
<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx/1.6.2</center>
</body>
</html>
但如果我重新指派char input[1024] = "Hello world.";
(不含「H」),http請求後,我得到正確的迴應: {"code":200,"lang":"en-ru","text":["\"Здравствуй, мир!\"."]}
。
可能是什麼問題?
您是否嘗試過發送不是英語的其他文字。該網站可能使用HTTP響應代碼400告訴您,您必須將其發送至實際英文版或無法翻譯它。所以它與捲曲本身無關。 –
@TJohnson'echo -n「Hello world。T」| ./translate {「code」:200,「lang」:「en-ru」,「text」:[「\」Здравствуй,мир。 Т\ 「」]}'。來自終端http://s32.postimg.org/lsber5asl/Screen_Shot_2016_05_01_at_20_30_51.png的屏幕截圖。但是,當我通過瀏覽器發出相同的請求時,我得到代碼200。 – 0x1337