HTTP DELETE 请求415错误 – 不支持的媒体类型(Unsupported media type) 使用RestSharp

我们使用postman模拟调用生成代码后

解决方案:AddParamter3个参数

第一个参数为Content-Type,第二个为请求数据体Object,第三个为参数类型ParameterType

这里需要指定第一个Content-Type的值为application/json

var client = new RestClient("https://aaa.bbb.com/ccc/api/person/delete");
            var request = new RestRequest(Method.DELETE);
            request.AddHeader("cache-control", "no-cache");
            request.AddHeader("Connection", "keep-alive");
            request.AddHeader("Accept-Encoding", "gzip, deflate");
            request.AddHeader("Host", "face.beeboxes.com");
            request.AddHeader("Cache-Control", "no-cache");
            request.AddHeader("Content-Type", "application/json");
            request.AddHeader("Authorization", "Bearer "+token);
            request.AddParameter("application/json", "[\"94fb50f31f484278886ec83a44451ca6\",\"f7852a8ba69b42afa2b6f502bbcc7f78\"]", ParameterType.RequestBody);
            IRestResponse response = client.Execute(request);

参考:https://stackoverflow.com/questions/17815065/set-content-type-header-using-restsharp

发布了71 篇原创文章 · 获赞 19 · 访问量 19万+

猜你喜欢

转载自blog.csdn.net/ujm097/article/details/95452461
今日推荐