你们这插件下头有的接口请求响应参数都不完整,写得太不用心了,看起来头疼。
小说阅读器插件,提交了审核小说的请求,如果小说中某个章节审核不通过,那么小说也会审核失败吗?https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/novel-api.html#%E5%AE%A1%E6%A0%B8%E7%8A%B6%E6%80%81%E4%BA%8B%E4%BB%B6 对这个有疑问,如果某个章节审核不通过了,小说审核通过了,那么用户在小说阅读器插件中看到的章节列表中会出现未审核通过的章节title么?
09-10是 json.dumps 的编码问题 改为 data=json.dumps(data, ensure_ascii=False).encode('utf-8') 解决(py3)
小说小程序插件中,作品管理接口,创建作品,接口提示"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我去,前辈们都没解决吗?一点有用的教程都搜不到
小说类目小程序跳转阅读器组件页面内容不展示1.按照官方提供【企微文档】小程序阅读器接入文档进行接入 https://doc.weixin.qq.com/doc/w3_AAcAYAbdAFwpM63n1R5SIat3aa4cX?scode=AJEAIQdfAAoVIQaI1HzxCMFC6-AJg 2.已经将书籍内容上传至内容后台——内容已审核通过; 3.阅读器可正常展示书籍封面和简介,提示无消息推送URL ; 3.开始阅读后页面一直处于展示loading状态,内容不展示; 4.以下为报错信息 [图片]
08-28同问,楼主解决了吗?我也不清楚该怎么弄了
小程序运营时需要收集用户微信账号、QQ号码、银行账号用来实现提现功能,现在因为这个审核被驳回怎么办?小程序内容不符合规则: (1):小程序涉嫌在非合理场景下收集、存储用户密码或敏感信息,包括但不限于微信账号、QQ号码、银行账号等,违反《微信小程序平台运营规范》及相关规则,请移除违规后再重新提交代码审核。
2024-06-09请问解决了没有,同样遇到了这个问题。
runtime.js?devtools_ignore=true:1 error parsing ca真机调试发生的问题,刚启动就报这个错请问是什么问题?,[图片]
2022-05-29请问楼主解决了吗?求助哇
arrayBuffer数据可以转成mp3直接听吗https://developers.weixin.qq.com/miniprogram/dev/api/media/recorder/RecorderManager.onFrameRecorded.html 这个事件返回的arrayBuffer数据可以转成mp3直接听吗, 怎么转化成base64,传输给后端。
2021-09-25真机调试后变成[图片] 看到社区有人把这当作bug来反馈了。。
真机调试 websocket 失效怎么办?在小程序中已经设置好socket合法域名了,在开发者工具中运行🆗,但是在真机调试的时候就连接不上了,很奇怪! 小程序尝试发布,发布审核过了上线了,但是依旧无法访问。 在社区中也看到过有类似提问,但是貌似都没有好的解决方案。 另外,我服务器跑在3333端口,我想应该是可以指定端口的吧?
2021-03-29遇到同样的问题了,烦人
真机调试框Network里的WebSocket跑到XHR里了- 当前 Bug 的表现(可附上截图) 真机调试框Network里的WebSocket跑到XHR里了 [图片] [图片] - 预期表现 和Chrome保持一致 - 复现路径 - 提供一个最简复现 Demo
2021-03-28