小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://api.weixin.qq.com/xpay/query_user_balance?access_token=xxx&pay_sig=xxx&signature=xxxx
{\"errcode\":-1,\"errmsg\":\"system error detail:[系统错误,请稍后重试] rid: 64ca2120-7c3f75b4-726048f0\"}
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
用户未登录或者登录态已经过期,需要重新调用wx.login进行登录
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问你的签名是怎样签的,我一直提示{"errcode":268490003,"errmsg":"签名校验失败 rid: 64cb6a1c-78644afc-128750a0"},我的签名生成是这样的
//支付密钥算法
public static String calcPaySig(String uri, String postBody, String appKey) {
String needSign = uri + "&" + postBody;
HMac paySignMac = new HMac(HmacAlgorithm.HmacSHA256, appKey.getBytes(StandardCharsets.UTF_8));
return paySignMac.digestHex(needSign);
}
private function calcPaySig(string $uri, string $postBody, string $appkey): string
{
$needSignMsg = $uri . '&' . $postBody;
return hash_hmac('sha256', $needSignMsg, $appkey);
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
用户未登录或者登录态已经过期,需要重新调用wx.login进行登录
请问你的签名是怎样签的,我一直提示{"errcode":268490003,"errmsg":"签名校验失败 rid: 64cb6a1c-78644afc-128750a0"},我的签名生成是这样的
//支付密钥算法
public static String calcPaySig(String uri, String postBody, String appKey) {
String needSign = uri + "&" + postBody;
HMac paySignMac = new HMac(HmacAlgorithm.HmacSHA256, appKey.getBytes(StandardCharsets.UTF_8));
return paySignMac.digestHex(needSign);
}
private function calcPaySig(string $uri, string $postBody, string $appkey): string
{
$needSignMsg = $uri . '&' . $postBody;
return hash_hmac('sha256', $needSignMsg, $appkey);
}