Bing用POST翻译

时间:2012-06-29 14:13:45

标签: php bing

我使用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?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)