我正在使用Spring安全性設置OAuth2.0授權服務器。我想知道在OAuth2.0授權服務器啓動並運行後是否有辦法動態註冊OAuth2.0客戶端?Spring OAuth2.0 - 動態註冊OAuth2.0客戶端
基本上,我知道我可以在配置OAuth2.0服務器時註冊一個客戶端,方法是擴展AuthorizationServerConfigurerAdapter
並覆蓋configure方法以在內存中添加客戶端詳細信息。但是,這種方式客戶端是預先註冊的,我想知道如何動態添加客戶端的詳細信息。
@Override public void configure(ClientDetailsServiceConfigurer clients) throws Exception { // @formatter:off clients.inMemory() .withClient(CLIENT_ID) .secret(CLIENT_SECRET) .authorizedGrantTypes("authorization_code", "implicit") .redirectUris("http://junk/") .scopes("cn") .accessTokenValiditySeconds(600); // @formatter:on }