-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
41 lines (28 loc) · 1.01 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* 小程序配置文件
*/
// 此处主机域名是腾讯云解决方案分配的域名
// 小程序后台服务解决方案:https://www.qcloud.com/solution/la
var host = "14592619.qcloud.la"
var config = {
// 下面的地址配合云端 Server 工作
host,
// 登录地址,用于建立会话
loginUrl: `https://${host}/#`,
// 测试的请求地址,用于测试会话
// https://14592619.qcloud.la/testRequest?noncestr=1506600174757
requestUrl: `https://${host}/testRequest`,
// 用code换取openId
openIdUrl: `https://${host}/openid`,
// 测试的信道服务接口
tunnelUrl: `https://${host}/tunnel`,
// 生成支付订单的接口
paymentUrl: `https://${host}/payment`,
// 发送模板消息接口
templateMessageUrl: `https://${host}/templateMessage`,
// 上传文件接口
uploadFileUrl: `https://${host}/upload`,
// 下载示例图片接口
downloadExampleUrl: `https://${host}/static/weapp.jpg`
};
module.exports = config