40 lines
1.4 KiB
Java
40 lines
1.4 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.GlobalAuthUtils;
|
|
import me.zhyd.oauth.utils.UrlBuilder;
|
|
|
|
/**
|
|
* <p>
|
|
* 企业微信网页登录
|
|
* </p>
|
|
*
|
|
* @author liguanhua (347826496(a)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("agentid", config.getAgentId())
|
|
.queryParam("redirect_uri", GlobalAuthUtils.urlEncode(config.getRedirectUri()))
|
|
.queryParam("response_type", "code")
|
|
.queryParam("scope", this.getScopes(",", false, AuthScopeUtils.getDefaultScopes(AuthWeChatEnterpriseWebScope.values())))
|
|
.queryParam("state", getRealState(state).concat("#wechat_redirect"))
|
|
.build();
|
|
}
|
|
}
|