-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
46 lines (30 loc) · 1.1 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
42
43
44
45
46
/**
* 小程序配置文件
*/
// 此处主机域名是腾讯云解决方案分配的域名
// 小程序后台服务解决方案:https://www.qcloud.com/solution/la
var host = "sanyecao.github.io"
var config = {
// 下面的地址配合云端 Server 工作
host,
// 登录地址,用于建立会话
loginUrl: `https://${host}/login`,
// 测试的请求地址,用于测试会话
requestUrl: `https://${host}/testRequest`,
getMovieListUrl: `https://${host}/movies.json`,
getBookListUrl: `https://${host}/books.json`,
getMusicListUrl: `https://${host}/musics.json`,
// 用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