这里是哪里啊
文字显示bug优 这里是”又“吧 开发人员是不是打错字了
09-02问提需求的人啊
多个pdf展示问题?目前有一个需求,点击按钮前出现一个操作须知的弹框,里面需要显示一些文字和多个pdf展示,大佬们要咋搞
09-02在postman里面试试,怀疑是乱码导致的json格式有问题了
小说小程序插件中,作品管理接口,创建作品,接口提示"errcode":47001?https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/novel-api.html#%E5%88%9B%E5%BB%BA%E4%BD%9C%E5%93%81 按照接口文档的参数结构来简单写一个demo: import json import requests def postRequest(url, data): headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' } response = requests.post(url, headers=headers, data=json.dumps(data)) response.encoding = "utf-8" print(response.text) def getRequest(url): headers = { 'Content-Type': 'application/json', 'Accept': 'application/json' } response = requests.get(url, headers=headers) response.encoding = "utf-8" return response.json() def get_token(): res = getRequest("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=xxxxx&secret=xxxxxx") print(res) return res['access_token'] if __name__ == '__main__': token = get_token() url = "https://api.weixin.qq.com/wxa/book/createbook?access_token=" + token data = { 'first_category_id': 10099, 'second_category_id': 10109, 'third_category_id': 10110, 'complete_status': 2, 'cover_media_id': 'xxxxxxxxxxxxxxxxxxxx', 'author': 'SALIERI', 'intro': '这是小说简介', 'title': "小说名字", } postRequest(url, data) 报错: {'access_token': 'xxxxx', 'expires_in': 7200} {"errcode":47001,"errmsg":"data format error rid: 68b5466f-6bc353ed-3e704d66"} 不知道哪里有问题,请赐教
09-01不会是curl请求的吧,curl请求 地址得用双引号。如果是代码,appid应该是个null或者空字符串
获取公众号token接口异常,该如何改动?https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' + appid + '&secret=' + secret 请求此接口获取token,但是提示{"errcode":41002,"errmsg":"appid missing rid: 68b4ff97-535bd1c9-13659343"},可是appid和secret我都是确认过好几遍,也用了后台配置的白名单的IP去访问这个接口~~~请问这是什么情况
09-01大概率是账户不一致,小概率未生效等几分钟
请问小程序已经配置了白名单,但是仍然提示40164应该如何处理?{"string":"{\"errcode\":40164,\"errmsg\":\"invalid ip 120.220.248.254 ipv6 ::ffff:120.220.248.254, not in whitelist rid: 68b017db-5cbc76f0-12ab8128\"}"} [图片]
09-01先用postman测吧
为什么我同一张图片,测试号上传素材接口可以正常上传,正式服务号上传报413错误?[图片]
08-29这是服务号接口,这个token是不是服务号的啊
后台调用发送模板消息接口,报错48001,有人知道是怎么回事吗?调用这个接口 https://api.weixin.qq.com/cgi-bin/message/template/send?access_token= 报错:{\"errcode\":48001,\"errmsg\":\"api unauthorized rid: 68b15da6-72884a3f-08090bfb\"} 服务号已经完成认证,这个还需要做什么吗
08-29无法复现啊
image组件的严重bughttp://tmp/1RS7NL218ncn4b1ab7b0f04a5dba20f8cdab1682dadc.jpg ,这种临时地址,image组件加载会出现死循环,会不断发起网络请求,占用大量计算资源,导致电脑发热。 <image src="{{imgUrl}}" mode="widthFix" /> 其中的 mode="widthFix"是关键,mode其他的值,不会出现。 如果想复现我遇到的bug,请使用wx.chooseMedia()接口,并使用this.setDate更新到渲染层。[图片] 左侧感叹号旁边的数字不断增加。电脑温度都干到90度了。
08-28这是多端框架的api,原生小程序不能用
wx.phoneSmsLogin is not a functionhttps://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/miniapp/api/auth/wx.phoneSmsLogin.html
08-28curl 请求测试吧。这jar包是三方,想提问去gitee上提issue
调用auth.code2Session接口时,抛出Read timed out?weixin-java-miniapp-4.4.0.jar
08-28