|
|
|
@ -394,7 +394,7 @@ namespace djy.Service.Isf
|
|
|
|
|
isfinfo.version = "1.0";
|
|
|
|
|
string json = JsonConvert.SerializeObject(isfinfo);
|
|
|
|
|
_LogsAdd("SendDE", "post", $"ISF接口调用发送{oid}:{json}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dictionary<string, string> dic = new Dictionary<string, string>();
|
|
|
|
|
dic.Add("user_id", Account.PARAMVALUE);
|
|
|
|
|
dic.Add("method", method.PARAMVALUE);
|
|
|
|
@ -402,7 +402,7 @@ namespace djy.Service.Isf
|
|
|
|
|
dic.Add("sign", sign);
|
|
|
|
|
dic.Add("timestamp", timestamp);
|
|
|
|
|
dic.Add("version", "1.0");
|
|
|
|
|
dic.Add("data", json);
|
|
|
|
|
dic.Add("data", json.ToUrlEncodeString());
|
|
|
|
|
gethtml = await HttpHelp.Post(dic, url.PARAMVALUE, PsotType.Urlencoded);
|
|
|
|
|
|
|
|
|
|
_LogsAdd("SendDE", "post", $"ISF接口调用返回{oid}:{gethtml}");
|
|
|
|
|