我正在编写Azure Queue Trigger功能应用程序,该应用程序从消息队列中获取数据并使用PUT请求将其上载到提供REST服务的存储。出于测试目的,我在Azure界面上的请求正文字段内提供测试数据,而不是从队列中挑选数据。我使用PutAsJsonAsync来使用REST。问题是我收到错误请求错误。我使用验证工具验证了JSON结构,它是有效的。我还使用Postman成功上传了相同的数据。所以我猜这可能是我的代码中存在的问题。这是我的代码:
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
public static void Run(string myQueueItem, TraceWriter log)
{
string URL = "<url>";
HttpClient client = new HttpClient();
client.BaseAddress = new Uri(URL);
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("token","<token value>");
HttpResponseMessage response = client.PutAsJsonAsync("xxx/xx/xxx",myQueueItem).Result;
if (response.IsSuccessStatusCode)
{
string responseString = response.Content.ReadAsStringAsync().Result;
log.Info($"This is result: {responseString}");
}
else
{
log.Info($"Response Status Code: {response.Headers} | Reason : {response.ReasonPhrase}");
}
}
答案 0 :(得分:2)
尝试使用itemscope=""
代替client.PutAsync()
我会这样称呼:
client.PutAsJsonAsync()