正常に動作している Web リクエストがありますが、ステータス OK を返すだけですが、返すように要求しているオブジェクトが必要です。要求している json 値を取得する方法がわかりません。オブジェクト HttpClient を初めて使用します。見逃しているプロパティはありますか? 返されるオブジェクトが本当に必要です。助けてくれてありがとう
Making the call - runs fine ステータス 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 get メソッド
//Cut out alot of code but you get the idea
public string Get()
{
return JsonConvert.SerializeObject(returnedPhoto);
}