This commit is contained in:
tanghc
2019-07-25 20:34:29 +08:00
parent bf49c68286
commit 9f78eceded
26 changed files with 449 additions and 58 deletions

View File

@@ -49,7 +49,7 @@ namespace SDKCSharp.Client
}
return openHttp.Get(url, header);
}
return this.openHttp.RequestFormBody(url, form, header);
return this.openHttp.PostJsonBody(url, JsonUtil.ToJSONString(form), header);
}
}