我想以 json 格式将 web 请求中的数据 Json 发送到 web 服务并从服务器获取结果。很多方法..:p
请帮我找到解决方案。
我想以 json 格式将 web 请求中的数据 Json 发送到 web 服务并从服务器获取结果。很多方法..:p
请帮我找到解决方案。
您可以使用(例如)RestClient ftom restsharp
_restClient = new RestClient();
var request = new RestRequest(url) { Method = Method.POST };
request.AddHeader("content-type", "application/json");
request.RequestFormat = DataFormat.Json;
request.AddParameter("json", YOUR_JSON, ParameterType.GetOrPost);
request.Timeout = DEFAULT_TIMEOUT;
_restClient.Timeout = Constants.DEFAULT_TIMEOUT;
_restClient.ExecuteAsync(request, response =>
{
// check response here
});