我要向像这样的 URL 提出 POST 请求 :
http://localhost/resource?auth_token=1234
我想把JSON送进身体 我的代码看起来是这样的:
var client = new RestClient("http://localhost");
var request = new RestRequest("resource", Method.POST);
request.AddParameter("auth_token", "1234");
request.AddBody(json);
var response = client.Execute(request);
我如何才能将 auth_token
参数设为 Get 参数, 并将此请求设定为 POST?