| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * 小程序配置文件
- */
- // 此处主机域名是腾讯云解决方案分配的域名
- // 小程序后台服务解决方案:https://www.qcloud.com/solution/la
- const host = '14592619.qcloud.la'
- const config = {
- // 下面的地址配合云端 Server 工作
- host,
- // 登录地址,用于建立会话
- loginUrl: `https://${host}/login`,
- // 测试的请求地址,用于测试会话
- requestUrl: `https://${host}/testRequest`,
- // 用code换取openId
- openIdUrl: `https://${host}/openid`,
- // 测试的信道服务接口
- tunnelUrl: `https://${host}/tunnel`,
- // 生成支付订单的接口
- paymentUrl: `https://${host}/payment`,
- // 发送模板消息接口
- templateMessageUrl: `https://${host}/templateMessage`,
- // 发送订阅消息接口
- subscribeMessageUrl: `https://${host}/subscribeMessage`,
- // 上传文件接口
- uploadFileUrl: `https://${host}/upload`,
- // 下载示例图片接口
- downloadExampleUrl: `https://${host}/static/weapp.jpg`,
- // 云开发环境 ID
- envId: 'release-b86096',
- // 云开发-存储 示例文件的文件 ID
- demoImageFileId: 'cloud://release-b86096.7265-release-b86096/demo.jpg',
- demoVideoFileId: 'cloud://release-b86096.7265-release-b86096/demo.mp4',
- }
- module.exports = config
|