- 小说阅读器阅读页有没有监听用户点击广告的方法?
如题。 小说阅读器插件是通过 NovelManager.setAdBlock 来设置广告的,不是直接操控 ad-custom,所以不确定有没有方法来知道用户点击了广告。
13小时前 - 消息配置没有办法区分正式环境和测试环境?
这个消息配置没有办法区分正式环境和测试环境? [图片]
10-01 - 消息推送配置报错:peer 证书无法被已知的CA 证书验证,是SSL证书的问题吗?
错误信息: 连接到你的服务器发生错误。 调试信息: CURL错误码:60 CURL状态原因:凭证无法验证 CURL状态解释:peer 证书无法被已知的CA 证书验证。 推送的URL链接:https://admin.pointread.cn/api/mini/receive?signature=xxxxxxxxx&echostr=1910334200196562734×tamp=1759295758&nonce=xxxxxxxxx echostr = "1910334200196562734" 你返回的echostr = ""
10-01 - 官方的小说阅读器插件如何知道用户已经阅读完这本书了?
如题,似乎没有直接的事件来告诉开发者用户是否阅读完这本书,只能说获取到了用户阅读的章节情况。各位大佬有无奇思妙想? https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/novel.html#%E4%BA%8B%E4%BB%B6
09-24 - 小说阅读器插件,提交了审核小说的请求,如果小说中某个章节审核不通过,那么小说也会审核失败吗?
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 - 官方的小说阅读器插件支持修改样式嘛?
https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/novel.html#%E4%BB%8B%E7%BB%8D 就是这个链接,看文档貌似没有看到明显可以设置自定义样式的参数。
09-03 - 小说阅读器插件通过 redirectTo 跳转到对应页面提示“无消息推送URL”,还需要配置什么嘛?
[图片] 根据文档链接https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/novel.html#%E8%B7%AF%E7%94%B1说是需要配“开发者未配置消息推送”,这里配置消息推送有什么作用?插件可以看到章节目录,但无法阅读章节内容·。
09-03 - 小说小程序插件中,作品管理接口,创建作品,接口提示"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 - 报告一个文档参数 bug
小说小程序 -> 获取作品信息 -> 返回参数 中 book 的类型错误了,不是 array<book>,应该是 Book。
08-31 - 手机端微信小程序闪退,PC端能够正常访问的问题,?
遇到如题的现象,不知道怎么回事。 真机调试,PC端是没有问题的,也没有在console中看到任何报错;手机端调试连正常连接都连不上。手机端的体验版、开发版、正式版都无法访问,都闪退。 小程序叫做“义工益农”,能帮忙解决一下吗?看是什么的问题。 小程序运维中心都没看到错误日志。 之前是正常的,在一次更换后端host之后,就变成这样了。更换后的host,域名安全等级是A。 经过微信开发者工具上的1.0版本的调试,才发现了一个报错(为什么2.0就没有任何报错?):[图片] 经过百度,看网上有人通过调整基础库版本来解决,但是我把所有基础库版本挨个测试过了,都是这样。有大佬知道如何解决吗?
2022-05-29