1
0
mirror of synced 2025-12-14 10:58:07 +08:00

🎨 优化重构部分代码

This commit is contained in:
Binary Wang
2022-05-15 20:43:10 +08:00
parent dfec57f200
commit 28e8277410
3 changed files with 255 additions and 244 deletions

View File

@@ -467,8 +467,8 @@ public class WxOpenComponentServiceImpl implements WxOpenComponentService {
@Override
public String oauth2buildAuthorizationUrl(String appId, String redirectURI, String scope, String state) {
return String.format(CONNECT_OAUTH2_AUTHORIZE_URL,
appId, URIUtil.encodeURIComponent(redirectURI), scope, StringUtils.trimToEmpty(state), getWxOpenConfigStorage().getComponentAppId());
return String.format(CONNECT_OAUTH2_AUTHORIZE_URL, appId, URIUtil.encodeURIComponent(redirectURI), scope,
StringUtils.trimToEmpty(state), getWxOpenConfigStorage().getComponentAppId());
}
@Override