How do you get the return information using post?
Now when I do that it's unusual
var param = JsonConvert.SerializeObject(new { stationCodes = "", version = 1 });
logDataService.Info(param);
Http.Post(Url + "/metadata/gasStation").Form(param).OnSuccess(
result =>
{
logDataService.Info(result);
}).OnFail(
webException =>
{
logDataService.Error(webException.Message);
}) .Go();