Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get the API value from the JSON returned in a HttpResponseMessage

I have created a Controller and method which i use to get data from an API. I use HttpResponseMessage to get the response. Everything works fine but i can not get the exact data i want in JSON format.
Method looks like below:

public class TestController : ApiController
    {
        [HttpGet]

        public async Task<IHttpActionResult> TestMethod(...)
        {
            string _apiUrl = String.Format("...");
            string _baseAddress = "...";

            using (var client = new HttpClient())
            {
                client.BaseAddress = new Uri(_baseAddress);
                client.DefaultRequestHeaders.Accept.Clear();
                client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
                HttpResponseMessage response = await client.GetAsync(_apiUrl);


                if (response.IsSuccessStatusCode)
                {
                    return Json(response);
                }
            }
            return NotFound();
        }
    }

The response i get looks like:

{
  "Version": {
    "Major": 1,
    "Minor": 1,
    "Build": -1,
    "Revision": -1,
    "MajorRevision": -1,
    "MinorRevision": -1
  },
  "Content": {
    "Headers": [
      {
        "Key": "Content-Length",
        "Value": [
          "359"
        ]
      },
      {
        "Key": "Content-Type",
        "Value": [
          "application/json; charset=utf-8"
        ]
      },
      {
        "Key": "Expires",
        "Value": [
          "-1"
        ]
      }
    ]
  },
  "StatusCode": 200,
  "ReasonPhrase": "OK",
  "Headers": [
    {
      "Key": "Pragma",
      "Value": [
        "no-cache"
      ]
    },
    {
      "Key": "X-SourceFiles",
      "Value": ["..."
      ]
    },
    {
      "Key": "Cache-Control",
      "Value": [
        "no-cache"
      ]
    },
    {
      "Key": "Date",
      "Value": [
        "Thu, 21 Jul 2016 13:25:54 GMT"
      ]
    },
    {
      "Key": "Server",
      "Value": [
        "Microsoft-IIS/10.0"
      ]
    },
    {
      "Key": "X-AspNet-Version",
      "Value": [
        "4.0.30319"
      ]
    },
    {
      "Key": "X-Powered-By",
      "Value": [
        "ASP.NET"
      ]
    }
  ],
  "RequestMessage": {
    "Version": {
      "Major": 1,
      "Minor": 1,
      "Build": -1,
      "Revision": -1,
      "MajorRevision": -1,
      "MinorRevision": -1
    },
    "Content": null,
    "Method": {
      "Method": "GET"
    },
    "RequestUri": "...",
    "Headers": [
      {
        "Key": "Accept",
        "Value": [
          "application/json"
        ]
      }
    ],
    "Properties": {}
  },
  "IsSuccessStatusCode": true
}

But normaly, the API return this value (xml format):

<License>
  <Existing>
    <Amount>0</Amount>
    <Quantity>0</Quantity>
    <UnitAmount>0</UnitAmount>
  </Existing>
<New>
   <Amount>400</Amount>
   <Quantity>50</Quantity>
   <UnitAmount>8</UnitAmount>
</New>
<Result>
   <Amount>400</Amount>
   <Quantity>50</Quantity>
   <UnitAmount>8</UnitAmount>
</Result>
</License>
   <PartnerDiscount i:nil="true"/>
</CalculatorResult>

How can i extract these values from the API request.If i execute the "RequestUri"from API response i get the exact data. What am i missing?

like image 880
etrupja Avatar asked Jul 21 '16 13:07

etrupja


1 Answers

You need to extract the body of the response and return that

public class TestController : ApiController
{
    [HttpGet]
    public async Task<IHttpActionResult> TestMethod(...)
    {
        string _apiUrl = String.Format("...");
        string _baseAddress = "...";

        using (var client = new HttpClient())
        {
            client.BaseAddress = new Uri(_baseAddress);
            client.DefaultRequestHeaders.Accept.Clear();
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
            var responseMessage = await client.GetAsync(_apiUrl);

            if (responseMessage.IsSuccessStatusCode)
            {
                var response = Request.CreateResponse(HttpStatusCode.OK);
                response.Content = responseMessage.Content;
                return ResponseMessage(response);
            }
        }
        return NotFound();
    }
}

Here is another option using ExpandoObject.

if (responseMessage.IsSuccessStatusCode)
{
    var data =  await responseMessage.Content.ReadAsAsync<ExpandoObject>(); 
    return Json(data);
}
like image 124
Nkosi Avatar answered Oct 09 '22 20:10

Nkosi