2

在我的 Coldfusion 应用程序中,我使用 Microsoft Bing Translation API。老实说,我不知道从哪里开始?让我写一下我已经完成的事情。

  • 已注册 ( https://datamarket.azure.com/account )
  • 从微软得到 3 样东西
    • 主帐户密钥 例如(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)
    • 客户 ID 例如(xxxxxxxxxxxxx)
    • 应用 ID 例如(mynameid)

我已经尝试过的或失败的尝试:

冷融合:

<cfhttp url="http://api.microsofttranslator.com/v2/Http.svc/Translate?appId=mynameid&from=en&to=de&text=HELLO"  result="rs" method="post"></cfhttp>

输出: 'to' 必须是有效的语言参数名称

 <cfhttp url="http://api.microsofttranslator.com/v2/Http.svc/Translate"  result="rs" method="post">
   <cfhttpparam name="appId"    type="header" value="mynameid" />
   <cfhttpparam type="header" name="method" value="POST" />
   <cfhttpparam type="header" name="from" value="en" />
   <cfhttpparam type="header" name="to" value="de" />
  <cfhttpparam type="header" name="text" value="HELLO" />
</cfhttp>
<cfdump var="#rs#">
4

0 回答 0