Set #39;Content-Type#39; header using RestSharp(使用 RestSharp 设置“Content-Type标头)
问题描述
我正在为 RSS 阅读服务构建客户端.我正在使用 RestSharp 库与他们的 API 进行交互.
I'm building a client for an RSS reading service. I'm using the RestSharp library to interact with their API.
API 声明:
创建或更新记录时,您必须将 application/json;charset=utf-8
设置为 Content-Type
标头.
When creating or updating a record you must set
application/json;charset=utf-8
as theContent-Type
header.
这是我的代码的样子:
RestRequest request = new RestRequest("/v2/starred_entries.json", Method.POST);
request.AddHeader("Content-Type", "application/json; charset=utf-8");
request.RequestFormat = DataFormat.Json;
request.AddParameter("starred_entries", id);
//Pass the request to the RestSharp client
Messagebox.Show(rest.ExecuteAsPost(request, "POST").Content);
但是;服务返回错误
错误 415:请使用 'Content-Type: application/json;charset=utf-8' 标题
Error 415: Please use the 'Content-Type: application/json; charset=utf-8' header
为什么 RestSharp 不传递标头?
Why isn't RestSharp passing the header?
推荐答案
我的博客 在 RestSharp 1.02 版本之后没有经过测试.如果您针对我的解决方案的具体问题提交评论,我可以更新它.
The solution provided on my blog is not tested beyond version 1.02 of RestSharp. If you submit a comment on my answer with your specific issue with my solution, I can update it.
var client = new RestClient("http://www.example.com/where/else?key=value");
var request = new RestRequest();
request.Method = Method.POST;
request.AddHeader("Accept", "application/json");
request.Parameters.Clear();
request.AddParameter("application/json", strJSONContent, ParameterType.RequestBody);
var response = client.Execute(request);
这篇关于使用 RestSharp 设置“Content-Type"标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 RestSharp 设置“Content-Type"标头


- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01