Constant.java 698 B

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