🐛 #2714 【小程序】修复即时配送相关接口报平台签名验证错误的问题

This commit is contained in:
Xianhui Guo
2022-08-02 13:37:51 +08:00
committed by GitHub
parent 873a0218e7
commit 4e06dd6039
3 changed files with 26 additions and 1 deletions

View File

@@ -113,7 +113,8 @@ public abstract class WxMaDeliveryBaseRequest implements Serializable {
str = str.concat(getShopOrderId());
}
str = str.concat(getAppSecret());
return DigestUtils.sha1Hex(str);
this.deliverySign = DigestUtils.sha1Hex(str);
return this.deliverySign;
}
}