baoshiwei
2025-03-12 f1208474f771a1c233d7425c8ed13fbaa0d521ac
ruoyi-common/ruoyi-common-social/src/main/java/org/dromara/common/social/topiam/AuthTopIamRequest.java
@@ -19,7 +19,7 @@
import org.dromara.common.core.utils.SpringUtils;
import org.dromara.common.json.utils.JsonUtils;
import static org.dromara.common.social.topiam.AuthTopiamSource.TOPIAM;
import static org.dromara.common.social.topiam.AuthTopIamSource.TOPIAM;
/**
 * TopIAM 认证请求
@@ -44,7 +44,7 @@
    }
    @Override
    protected AuthToken getAccessToken(AuthCallback authCallback) {
    public AuthToken getAccessToken(AuthCallback authCallback) {
        String body = doPostAuthorizationCode(authCallback.getCode());
        Dict object = JsonUtils.parseMap(body);
        checkResponse(object);
@@ -58,7 +58,7 @@
    }
    @Override
    protected AuthUser getUserInfo(AuthToken authToken) {
    public AuthUser getUserInfo(AuthToken authToken) {
        String body = doGetUserInfo(authToken);
        Dict object = JsonUtils.parseMap(body);
        checkResponse(object);