我想向这样的 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?