access_token通过如下云函数获得 const cloud = require('wx-server-sdk') const rp = require('request-promise') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { //appid和秘钥 const appid = 'wx426d5530727bdaed', secret = 'xxx'; const AccessToken_options = { method: 'GET', url: 'https://api.weixin.qq.com/cgi-bin/token', qs: { appid, secret, grant_type: 'client_credential' }, json: true }; //获取AccessToken return await rp(AccessToken_options); }
获取直播列表出错?我的云函数代码 const cloud = require('wx-server-sdk') const rp = require('request-promise') cloud.init() exports.main = async (event, context) => { const options = { method: 'POST', url: 'https://api.weixin.qq.com/wxa/business/getliveinfo' , qs: { access_token:event.token, start:0, limit:50, }, json: true }; //获取AccessToken return await rp(options); } 调用该云函数返回{errcode: 41001, errmsg: "access_token missing rid: 5fa3d9a2-477a4656-7f17fd9e"}
2020-11-05现在是v1.1版,只是在v1.0版基础上fix一线bug,就审核不通过,为什么?
小程序审核不过1:小程序内容不符合规则: (1):你好,小程序能发布敏感信息,为避免您的小程序被滥用,请你完善内容审核机制,如调用小程序内容安全API,或使用其他技术、人工审核手段,过滤色情、违法等有害信息,保障发布内容的安全 请根据上述原因对小程序进行修改,并重新提交代码审核。 若对上述原因无法理解,可前往反馈页面进行反馈。
2019-07-25 服务端的代码 const { mysql } = require('../qcloud') async function get_goods(ctx, next) { await mysql('goods').select('id', 'title', 'price', 'url1','clickratenum','volume').then(res => { ctx.state.code = 0 ctx.state.data = res }).catch(err => { ctx.state.code = -1 throw new Error(err) }) } module.exports = { get_goods }
数据库访问,无返回查询内容- 当前 Bug 的表现(可附上截图)登录phpmyadmin数据库,有一个警告信号:配置文件现在需要一个短语密码 - 预期表现:无 - 复现路径: - 提供一个最简复现 Demo
2019-01-27登录失败 LoginError {type: "ERR_LOGIN_MISSING_SESSION", message: ""<html>\r\n<head><title>502 Bad Gateway</title></h…>nginx/1.10.2</center>\r\n</body>\r\n</html>\r\n""}测试代码 GET GET https:// kifrasee.qcloud.la/weapp/login 502 (Bad Gateway)502 (Bad Gateway) ,问题未解决 是否数据库出现问题:打开数据库,有一个警告:[图片]配置文件现在需要一个短语密码。
502 (Bad Gateway)- 需求的场景描述(希望解决的问题)开发环境能正常工作 - 希望提供的能力:帮我能尽快解决该问题。急!!!
2019-01-09突然好了??
504 Gateway Time-out- 需求的场景描述(希望解决的问题):因为在后台数据库导入一张数据量较大的表,现在想进入数据库,就出现 504 Gateway Time-out,如何解决,急!! - 希望提供的能力
2018-08-29