gpt4 book ai didi

c# - HttpClient PutAsync 使用 RestAPI 更新字段

转载 作者:行者123 更新时间:2023-11-30 21:43:41 25 4
gpt4 key购买 nike

我们有一个第三方 API,它同时具有 GET 和 PUT 方法。第三方 API 仅以 XML 格式返回响应和接受。 api 看起来像 https://bh.org/api/v2/prj/A152 返回 GET

<prj:prj uri="https://bh.org/api/v2/prj/V51" lid="V51" xmlns:udf="http://ge.com/ri/userdefined" xmlns:ri="http://ge.com/ri" xmlns:file="http://ge.com/ri/file" xmlns:prj="http://ge.com/ri/prj">
<name>fgfgfg</name>
<res uri="https://bh.org/api/v2/res/19"/>
<udf:type name="cis"/>
<udf:field type="String" name="ST">Cli</udf:field>
<udf:field type="String" name="CPN">TestName</udf:field>
<udf:field type="Numeric" name="No">1</udf:field>
<udf:field type="String" name="CA">Do not know</udf:field>
<udf:field type="String" name="Cto">Me</udf:field>
<udf:field type="String" name="Site">GT</udf:field>
</prj:prj>

我需要使用第三方 API 中的 put 方法将此处的名称从 ad-93 更改为 ABCD。我创建了应用程序,我们在其中使用 GET 方法调用第三方 API 以获取响应

 using (var client_Name = new HttpClient())
{
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
Uri uri = new Uri(BaseURL_C);
client_Name.BaseAddress = uri;
client_Name.DefaultRequestHeaders.Accept.Clear();
client_Name.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/xml"));
client_Name.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray_C));

string c_URL = BaseURL_C + "api/v2/prj/" + Name;
var response_LabURL = client_Name.GetAsync(c_URL).Result;
string responseString_URL = response_LabURL.Content.ReadAsStringAsync().Result;
XDocument new_doc = XDocument.Parse(responseString_URL);
new_doc.Descendants("name").FirstOrDefault().Value = serviceResponse;

使用上面的代码,我可以更改作为响应检索到的 XDocument 中名称的值。现在,我尝试将 XDocument 作为参数传递给 putAsync,以使用 Rest API 更新该字段。

 using (var putClient = new HttpClient())
{
var requestUrl = string c_URL = BaseURL_C + "api/v2/prj/" + Name;;
using (HttpContent httpContent = new XDocument(new_doc))
{
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/xml");
HttpResponseMessage response = httpClient.PutAsync(requestUrl, httpContent).Result;
}

但上面的代码会抛出错误,如 Cannot implicitly convert type 'System.Xml.Linq.XDocument' to 'System.Net.Http.HttpContent'

我不确定如何将 XDocument new_doc 转换为 HtppContent 以便将它们作为参数传递。

最佳答案

你必须像这样使用它

HttpContent httpContent = new StringContent(new_doc.ToString(), Encoding.UTF8, "application/xml");

并删除行

httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/xml");

关于c# - HttpClient PutAsync 使用 RestAPI 更新字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41477011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com