我想知道我是否可以在 asp.net 中使用 Google Translator API?我正在使用 .net framework 3.5 并将 Google Transaltor API .dll 添加到 bin 文件夹中。代码在这里。
string Text = "This is a string to translate";
Google.API.Translate.TranslateClient tc = new TranslateClient("www.google.com");
string trans = tc.Translate(Text,"en","hi");
在调试时抛出异常:
[响应状态:403]请使用翻译 v2。请参阅http://code.google.com/apis/language/translate/overview.html
这个异常的原因是什么?