我正在尝试使用此 link
在Windows应用商店应用中使用Microsoft Translator的示例代码示例代码为 here
当我运行应用程序时,我收到异常“远程服务器返回了意外的响应:(417)期望失败”
此异常发生在以下行:
germanTranslationTextBlock.Text = await webService.TranslateAsync("Bearer " + accessToken.access_token, sourceTextBox.Text, "en", "de", "text/plain", "");
P.S。我支持代理。
一些谷歌搜索显示System.Net.ServicePointManager.Expect100Continue = false;
是解决方案,但我不知道如何为Windows Store App做到这一点。
答案 0 :(得分:0)
无法解决此错误,但获得了更好,更实际的最佳源代码[功能成功],可以进行文本转换,也可以翻译 here。
如果我之前找到它可以保存一生,但是很难为Windows应用程序开发找到任何好的资源。