DotnetOpenAuth - 将消息发布到接受不同字符集的服务
我正在开发使用 openAPI 服务的远程博客编辑器。 但是,当我用韩语发送带有参数的 POST 请求时,注册帖子的字符被破坏。 GET 请求工作正常。
我使用 DotnetOpenAuth。 使用 DotnetOpenAuth 时如何解决此问题?
I am developing the remote blog editor which uses openAPI services.
But, when I send POST request with parameters in Korean, the characters of the registered post are broken. GET request works fine.
I use DotnetOpenAuth.
How can I solve this problem while using DotnetOpenAuth?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要在 HTTP 标头中设置编码类型。这与 DotNetOpenAuth 正交,因此只需在
HttpWebRequest
上设置标头即可。You probably need to set the encoding type in your HTTP headers. That's orthogonal to DotNetOpenAuth so just set the header on your
HttpWebRequest
.