https://developers.weixin.qq.com/miniprogram/dev/api/device/network/wx.getLocalIPAddress.html wx.getLocalIPAddress,PC端连wifi或者连手机热点,获取的localip类似192.168.1.6。 真机调试localip为0.0.0.0,希望获取与上述相同IP。 getIp: function () { const that = this; // 获取临时登录凭证 wx.login({ success: (resLogin) => { if (resLogin.code) { // 获取IP wx.getLocalIPAddress({ success: (resIp) => { console.log('resIp', resIp) that.setData({ ip: resIp.localip, // 此处获取IP userCode: resLogin.code }) } }) } }, }) },
你好,公司新搭建的网站,访问会提示非微信官方网页,请确认是否继续访问,申请恢复后也没有结果,请问该怎么处理呢? [图片] 备案号:苏ICP备2023011036号-3 已经备案过了
TOKEN = "k4hqAeOi3pPMnmWURvZJd8jyj8BATR" EncodingAESKey = "uu06tNJqysIDCpSer1PjXC8nMZAo6fNxDszcBZ8OnaF" APPID = "8abfUZOvOlQr8Fr" headers = { "Content-Type": "application/json", } data = '''<xml> <appid><![CDATA[k4hqAeOi3pPMnmWURvZJd8jyj8BATR]]></appid> <openid><![CDATA[7hK2MdIzH9Q]]></openid> <msg><![CDATA[你好]]></msg> <channel>7</channel> <kefuname><![CDATA[BobAi]]></kefuname> </xml>''' encryp_test = WXBizMsgCrypt(TOKEN, EncodingAESKey, APPID) nonce = "12345678" ret, encrypt_xml = encryp_test.EncryptMsg(data, nonce) url = "https://chatbot.weixin.qq.com/openapi/sendmsg/{TOKEN}".format(TOKEN=TOKEN) response = requests.post(url, data=json.dumps({"encrypt": encrypt_xml}), headers=headers) response.status_code 是那里配置错了?
小程序支付,唤起微信支付的时候报错 errMsg: "requestPayment:fail banned", 预处理的数据没提示有啥问题,但是唤起支付的时候提示这个,问了客服,商户号是没问题的。 因为在这个商户还绑定了一个服务号,服务号里是可以正常支付的。小程序是用uniapp开发的。是哪里没有配置还是什么原因啊?
通过https://api.weixin.qq.com/channels/ec/sharer/bind 邀请分享员,回调:"errcode":10070002,"errmsg":"绑定的分享员数量达到上限(10000个)",之前是允许2万个,现在是限制1万个吗?而文档上,写着只允许10个?我的小店普通分享员也就几百个,那这个限制到底是多少?烦请官方给一下明确的数量限制,谢谢! [图片]