-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMobPushConfig.cs
41 lines (35 loc) · 1.08 KB
/
MobPushConfig.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace mobpush.api.client
{
public class MobPushConfig
{
/**
* appkey: 需要先设置此数据,怎样获取appkey,请查看http://bbs.mob.com/forum.php?mod=viewthread&tid=8212&extra=page%3D1
*/
public static string appkey = "";
/**
* appSecret: appkey对应密钥,需要先设置此数据
*/
public static string appSecret = "";
/**
* baseUrl: webapi http 接口基础url
*/
public static string baseUrl = "http://api.push.mob.com";
/**
* deviceUrl: 设备操作类接口基础URL
*/
public static string deviceUrl = "http://api.push.mob.com";
/**
* pushUrl: 推送操作接口基础URL
*/
public static string pushUrl = "http://api.push.mob.com";
/**
* statsUrl: 推送任务统计接口基础URL
*/
public static string statsUrl = "http://api.push.mob.com";
}
}