mirror of
https://gitee.com/yadong.zhang/JustAuth.git
synced 2025-12-06 16:58:24 +08:00
38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
package me.zhyd.oauth.request;
|
|
|
|
import me.zhyd.oauth.cache.AuthStateCache;
|
|
import me.zhyd.oauth.config.AuthConfig;
|
|
import me.zhyd.oauth.config.AuthDefaultSource;
|
|
import me.zhyd.oauth.enums.scope.AuthWeChatEnterpriseWebScope;
|
|
import me.zhyd.oauth.utils.AuthScopeUtils;
|
|
import me.zhyd.oauth.utils.UrlBuilder;
|
|
|
|
/**
|
|
* <p>
|
|
* 企业微信网页登录
|
|
* </p>
|
|
*
|
|
* @author liguanhua(347826496@qq.com)
|
|
* @since 1.15.9
|
|
*/
|
|
public class AuthWeChatEnterpriseWebRequest extends AbstractAuthWeChatEnterpriseRequest {
|
|
public AuthWeChatEnterpriseWebRequest(AuthConfig config) {
|
|
super(config, AuthDefaultSource.WECHAT_ENTERPRISE_WEB);
|
|
}
|
|
|
|
public AuthWeChatEnterpriseWebRequest(AuthConfig config, AuthStateCache authStateCache) {
|
|
super(config, AuthDefaultSource.WECHAT_ENTERPRISE_WEB, authStateCache);
|
|
}
|
|
|
|
@Override
|
|
public String authorize(String state) {
|
|
return UrlBuilder.fromBaseUrl(source.authorize())
|
|
.queryParam("appid", config.getClientId())
|
|
.queryParam("redirect_uri", config.getRedirectUri())
|
|
.queryParam("response_type", "code")
|
|
.queryParam("scope", this.getScopes(",", false, AuthScopeUtils.getDefaultScopes(AuthWeChatEnterpriseWebScope.values())))
|
|
.queryParam("state", getRealState(state).concat("#wechat_redirect"))
|
|
.build();
|
|
}
|
|
}
|