- 运营账户转账充值失败,一直提示未完成?
[图片]
2天前 - 微信转账到零钱 username 加密失败
微信转账到零钱 username 加密失败,提示message too long for RSA key size,始终不成功
03-28 - 商家转账到零钱,username 加密失败
商家转账到零钱,username 加密失败,没有微信公钥
03-26 - 小程序认证,汇款银行账号填错了,怎么修改?
注册小程序,认证时汇款银行账号填错了,财务已经打款,现在怎么修改
01-16 - 小程序备案
appid:wxea9b60d5e2983b44,法人收到验证码,小程序负责人收不到验证码,无法完成备案,请求解决
2023-11-27 - 微信怎么回事,申请这两个接口总是失败,提交了10几次辅助资料?
wx.onLocationChange、wx.startLocationUpdate 这两个地理位置接口是不让申请了吗,提交了多次资料,就说描述不符,录屏也提交了。不让申请就直说。。。
2023-05-15 - uniapp 获取code错误
https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Authorized_Interface_Calling_UnionID.html uni.login({ provider: "weixin", onlyAuthorize: true }).then(res => { res = this.$determine(res) this.errmsg=JSON.stringify(res) if (res.errMsg == 'login:ok') { console.log('code',res.code) } 获取code,给后端,提示code 无效 后端请求: http请求方式: GET https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code 返回: {"errcode":40029,"errmsg":"invalid code, rid: 624e907f-08656c40-47262de6"}
2022-04-07 - app 微信快捷登录,获取code ,提示code 无效
前端部分代码: uni.login({ provider: 'weixin', success: function(loginRes) { console.log(JSON.stringify(loginRes.authResult)); } }); var weixinService = null; // http://www.html5plus.org/doc/zh_cn/oauth.html#plus.oauth.getServices plus.oauth.getServices(function(services) { if (services && services.length) { for (var i = 0, len = services.length; i < len; i++) { if (services[i].id === 'weixin') { weixinService = services[i]; // console.log('授权对象') console.log(weixinService) break; } } plus.nativeUI.alert("认证0!") if (!weixinService) { plus.nativeUI.alert("认证1!") //console.log('没有微信登录授权服务'); return; } console.log(res) plus.nativeUI.alert("认证2!") // http://www.html5plus.org/doc/zh_cn/oauth.html#plus.oauth.AuthService.authorize weixinService.authorize(function(event) { //此处获取code的关键 plus.nativeUI.alert("认证3!") console.log(event) console.log(event.code, '这次是真的授权后返回的code') plus.nativeUI.alert("认证4!"+event.code) 后端部分代码: //微信授权获取OPENID func (mpwxLoginService *MpwxLoginService) GetWxAppOpenID(authcode string) (string, string, string, string) { usercorpID := global.GVA_CONFIG.Mini.AppAppid usersecret := global.GVA_CONFIG.Mini.AppAppSecret openIDUrl := "https://api.weixin.qq.com/sns/oauth2/access_token?appid=" + usercorpID + "&secret=" + usersecret + "&code=" + authcode + "&grant_type=authorization_code" resp, err := http.Get(openIDUrl) if resp != nil { defer resp.Body.Close() } if err != nil || resp.StatusCode != http.StatusOK { return "", "", "", err.Error() } body, err2 := ioutil.ReadAll(resp.Body) fmt.Println(openIDUrl, string(body), err2) if err2 != nil { return "", "", "", err.Error() } //Json Decoding if bytes.Contains(body, []byte("openid")) { opidinfo := OpenIDResponse{} err = json.Unmarshal(body, &opidinfo) if err != nil { return "", "", "", err.Error() } return opidinfo.OpenID, opidinfo.NickName, opidinfo.SessionKey, "" } return "", "", "", string(body) }
2022-04-06 - 微信支付JSAPI提示支付验证签名失败?
[图片][图片][图片][图片] [图片] 验签没有问题,不知道哪里出问题了,请大佬指点一二,谢谢。
2021-01-31