RestSharpのExecuteメソッドを使用してRESTエンドポイントをクエリし、POCOにシリアル化するという非常に簡単な例を実行しようとしています。ただし、私が試したすべての結果は、NULL値を持つすべてのプロパティを持つresponse.Dataオブジェクトになります。
JSON応答は次のとおりです。
{
"Result":
{
"Location":
{
"BusinessUnit": "BTA",
"BusinessUnitName": "CASINO",
"LocationId": "4070",
"LocationCode": "ZBTA",
"LocationName": "Name of Casino"
}
}
}
これが私のテストコードです
[TestMethod]
public void TestLocationsGetById()
{
//given
var request = new RestRequest();
request.Resource = serviceEndpoint + "/{singleItemTestId}";
request.Method = Method.GET;
request.AddHeader("accept", Configuration.JSONContentType);
request.RootElement = "Location";
request.AddParameter("singleItemTestId", singleItemTestId, ParameterType.UrlSegment);
request.RequestFormat = DataFormat.Json;
//when
Location location = api.Execute<Location>(request);
//then
Assert.IsNotNull(location.LocationId); //fails - all properties are returned null
}
そしてこれが私のAPIコードです
public T Execute<T>(RestRequest request) where T : new()
{
var client = new RestClient();
client.BaseUrl = Configuration.ESBRestBaseURL;
//request.OnBeforeDeserialization = resp => { resp.ContentLength = 761; };
var response = client.Execute<T>(request);
return response.Data;
}
そして最後に、これが私のPOCOです
public class Location
{
public string BusinessUnit { get; set; }
public string BusinessUnitName { get; set; }
public string LocationId { get; set; }
public string LocationCode { get; set; }
public string LocationName { get; set; }
}
さらに、応答のErrorExceptionプロパティとErrorResponseプロパティはNULLです。
これは非常に単純なケースのように思えますが、私は一日中輪になって走り回っています!ありがとう。