123456789101112131415161718 |
- package com.hssx.constant;
- /**
- * Author: 吴涛涛
- * Date : 2019 - 07 - 24 16:00
- * Description:<描述>常量配置类
- * Version: 1.0
- */
- public class Constant {
- public static final String MICROBLOG_APPKEY = "2141531565";//微博的appkey
- public static final String MICROBLOG_APPSECRET = "f39462b939a56ce6d846bf83e04c20b5";//微博的accesstoken
- public static final String WECHAT_APPID = "wx749c84daac654e1e";//微信的appid
- public static final String WECHAT_APPSECRET = "aacbd046ec1c790836f4f684c96fe585";//微信的appsecret
- public static final String CALLBACKURL = "https://wx.ttkuaiban.com/minigame/index.html";//微博返回code的回调地址
- }
|