|
@@ -72,7 +72,10 @@ namespace MySystem
|
|
|
string signString = function.BuildQueryString(data);
|
|
|
data.Add("sign", hmac_sha256(signString));
|
|
|
string req = Newtonsoft.Json.JsonConvert.SerializeObject(data);
|
|
|
+ function.WriteLog("请求地址:" + reqUrl, "天谕音响日志");
|
|
|
+ function.WriteLog("请求参数:" + req, "天谕音响日志");
|
|
|
string result = function.PostWebRequest(reqUrl, req, "application/json");
|
|
|
+ function.WriteLog("响应数据:" + result, "天谕音响日志");
|
|
|
return result;
|
|
|
}
|
|
|
|