我有一个正常工作的 Web 请求,但它只是返回状态 OK,但我需要我要求它返回的对象。我不确定如何获取我请求的 json 值。我是使用对象 HttpClient 的新手,是否有我遗漏的属性?我真的需要返回的对象。谢谢你的帮助
拨打电话 - 运行良好会返回 OK 状态。
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept
.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var responseMsg = client.GetAsync(string.Format("http://localhost:5057/api/Photo")).Result;
api获取方法
//Cut out alot of code but you get the idea
public string Get()
{
return JsonConvert.SerializeObject(returnedPhoto);
}