遇到同样的问题,在线求解!!! 错误代码:61016, 错误信息:function category of API need be confirmed by component rid: 671b65d8-2cfb9e3b-58660882,微信原始报文:{"errcode":61016,"errmsg":"function category of API need be confirmed by component rid: 671b65d8-2cfb9e3b-58660882"}
微信公众号授权给三方平台,创建会员卡报错61016?微信原始报文:{"errcode":61016,"errmsg":"function category of API need be confirmed by component hint: [G0839r280]"}
10-25微信公众号服务器配置时一直提示 token验证失败,服务器的日志消息显示已经微信的请求已经进入并成功返回了 “echostr”的值,但是依然显示token配置失败。我更换了新的EncodingAESKey都还是一样验证失败! [图片][图片]
微信公众号填写服务器配置一直报token验证失败,什么原因?微信公众号服务器配置时一直提示 token验证失败,服务器的日志消息显示已经微信的get请求已经进入并成功返回了 “echostr”的值,但是依然显示token配置失败。 [2019-12-19 13:32:38] trace /api.php?id=5&signature=3ff88073881e29deb5aaaaa2dcf9712d786eb4dd&echostr=8772198682473754495×tamp=1576733558&nonce=570180648 appid:wx4c5a73391270f4e9,同样的代码,其他公众号配置就没有问题。
2020-12-24我这边也是经常遇到这样的接口调用异常!尝试过把encrypt_code及activate_ticket都进行Uri.UnescapeDataString(encrypt_code); 结果还是会有CardApi.CardDecryptNew:invalid encrypt code,或者CardApi.GetActivateTempInfoNew:invalid activate_ticket.Maybe this ticket is not belong this AppId 的错误出现。 之前有人说是因为%2f,%3d,%4xxx...这类似的字符码没有转码的原因 求大佬给个说法!
wx.openCard(object)得到Code解密失败!请管理员尽快解决!!参数说明: access_token:是公众号的access_token encrypt_code:是通过wx.addCard()得到的code的值, 具体的代码如下: public static string DecryptCode(string access_token, string encrypt_code) { var url = string.Format("https://api.weixin.qq.com/card/code/decrypt?access_token={0}", access_token); var client = new HttpClient(); var sb = new StringBuilder(); sb.Append("{") .Append('"' + "encrypt_code" + '"' + ":").Append(encrypt_code) .Append("}"); var result = client.PostAsync(url, new StringContent(sb.ToString())).Result; return DynamicJson.Parse(result.Content.ReadAsStringAsync().Result); } 但是最终报错:微信Post请求发生错误!错误代码:40075,说明:invalid encrypt code hint: [_wDofA0309e569]
2020-04-13