我正在使用 .NET 库http://code.google.com/p/google-api-dotnet-client/wiki/APIs#Translate_API来翻译文本,但我不能翻译大文本,只能翻译小文本。
我收到错误 (414) 请求 URI 太大。应该有一些方法可以做到这一点。
我有这个代码
var service = new TranslateService();
service.Key = this.ApiKey;
var request = service.Translations.List(textToTranslate, this.LngDestination);
request.Source = this.LngSource;
TranslationsListResponse response = request.Fetch();
foreach (TranslationsResource translation in response.Translations)
{
return translation.TranslatedText;
}
有人知道如何解决这个问题吗?