C# HttpClient PostAsync with JSON VSO git API 参数

C# HttpClient PostAsync with JSON parameter for VSO git API

我正在尝试了解 VSO git API。我已经像这样成功地发出了 Get 请求:

using (var response = client.GetAsync(
                        uri).Result)
                    {
                        response.EnsureSuccessStatusCode();
                        var responseBody = await response.Content.ReadAsStringAsync();
                        Console.WriteLine(responseBody);
                        ResponseInfo.Text = JsonHelper.FormatJson(responseBody);
                    }

我在将基本身份验证的 client.DefaultRequestHeaders 和媒体类型设置为 application/json 之后执行此操作。

对于 post 请求,VSO 文档显示如下:

我理解参数是JSON。但是,我不确定如何将其传递到 C# 中的 post 请求中。我尝试了以下方法:

string content = @"{
                              ""refUpdates"": [
                                {
                                  ""name"": ""refs/heads/master"",
                                  ""oldObjectId"": ""*old object id*""
                                }
                              ],
                              ""commits"": [
                                {
                                  ""comment"": ""Test commit"",
                                  ""changes"": [
                                    {
                                      ""changeType"": ""edit"",
                                      ""item"": {
                                        ""path"": ""/foo.txt""
                                      },
                                      ""newContent"": {
                                        ""content"": ""test"",
                                        ""contentType"": ""rawtext""
                                      }
                                    }
                                  ]
                                }
                              ]
                            }";

            var stringToJson= new JavaScriptSerializer();
            var JSONoutput = stringToJson.Deserialize<object>(content);
            StringContent stringContent = new StringContent(JSONoutput.ToString(), Encoding.UTF8, "application/json");

然后我将其传递给

using (var response = client.PostAsync(uri, stringContent).Result)
                    {
                        response.EnsureSuccessStatusCode();
                        var responseBody = await response.Content.ReadAsStringAsync();
                        Console.WriteLine(responseBody);
                    }

我收到 400 Bad Request 错误。我是否正确传递了参数?本质上,我采用教程提供的字符串版本,将其转换为 JSON,反序列化,将其转换为 HTTPContent,然后将其传递到 PostAsync。我想不出另一种方法来做到这一点。

感谢您的宝贵时间!

原来我能做到

 StringContent stringContent = new StringContent(content, Encoding.UTF8, "application/json");

JSON 对象的字符串版本足以用于 StringContent。