0

我使用 Bing Translate 和 GET (curl) 方法,一切正常。

但现在我需要使用 POST 方法,添加新行:

$postData = array('text'=>'home', 'to'=>'it', 'from'=>'en');
curl_setopt($ch, CURLOPT_POST, TRUE);   
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);

现在得到错误:

“错误状态代码:'InternalServerError'

详细信息:服务器在处理请求时遇到错误。有关详细信息,请参阅服务器日志。” BING 不支持 POST?

4

2 回答 2

1

您可以在http://code.google.com/p/micrsoft-translator-php-wrapper/找到实现, 您还可以看到演示 http://renjith.co.in/translate/

于 2012-09-15T10:16:38.280 回答
0

BING 支持 POST:http ://wangpidong.blogspot.com/2012/04/how-to-use-new-bing-translator-api-with.html

(见第 4 步)

于 2012-06-29T14:34:28.340 回答