Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@Override public String authorize(String state) { return UrlBuilder.fromBaseUrl(super.authorize(state)) .queryParam("display", "popup") .queryParam("scope", this.getScopes(" ", true, AuthScopeUtils.getDefaultScopes(AuthBaiduScope.values()))) .build(); }
如上面所示,这样在内部不是已经写死了?AuthBaiduScope.values()这个只有固定值啊。那该怎么自定义呢
Beta Was this translation helpful? Give feedback.
All reactions