Commit cf9d3ddf by 宋毅

新接口

parent 1eaf6fc1
...@@ -459,7 +459,7 @@ module.exports = function (app) { ...@@ -459,7 +459,7 @@ module.exports = function (app) {
//2.通过appsecret 验签 //2.通过appsecret 验签
req.body.sign = sign; req.body.sign = sign;
if (req.path.indexOf("/sign/getSign") >= 0) { if (req.path.indexOf("/sign/getSign") >= 0) {
let tmpSign = await signSve.createSign(obj, appInfo.uapp_secret); let tmpSign = await signSve.createSign(req.body, appInfo.uapp_secret);
res.end(JSON.stringify(tmpSign)); res.end(JSON.stringify(tmpSign));
return; return;
}//获取签名信息 }//获取签名信息
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment