AuthConfig.java 1.2 KB
Newer Older
智布道's avatar
智布道 已提交
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 47
package me.zhyd.oauth.config;

/**
 * @author yadong.zhang (yadong.zhang0415(a)gmail.com)
 * @version 1.0
 * @website https://www.zhyd.me
 * @date 2019/1/31 14:03
 * @since 1.8
 */
public class AuthConfig {
    /**
     * github应用的Client ID
     */
    public static String githubClientId = null;
    /**
     * github应用的Client Secret
     */
    public static String githubClientSecret = null;
    /**
     * github应用的redirect_uri 登陆成功后的回调地址
     */
    public static String githubRedirectUri = null;
    /**
     * weibo应用的App Key
     */
    public static String weiboClientId = null;
    /**
     * weibo应用的App Secret
     */
    public static String weiboClientSecret = null;
    /**
     * weibo应用的redirect_uri 登陆成功后的回调地址
     */
    public static String weiboRedirectUri = null;
    /**
     * gitee应用的Client ID
     */
    public static String giteeClientId = null;
    /**
     * gitee应用的Client Secret
     */
    public static String giteeClientSecret = null;
    /**
     * gitee应用的redirect_uri 登陆成功后的回调地址
     */
    public static String giteeRedirectUri = null;
}