問題タブ [keycloak-admin-cli]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
keycloak - 非推奨のメソッド org.keycloak.TokenVerifier.realmUrl() の代替手段は何ですか
以下のコードを使用して AccessToken を検証しようとしています -
TokenVerifier ベリファイア = TokenVerifier.create(StringAccessToken, AccessToken.class).withDefaultChecks(); PublicKey publicKey = getRealmPublicKey(verifier.getHeader()); return verifier.realmUrl(“someStringUrl”).publicKey(publicKey).verify().getToken();
しかし、 realmUrl() メソッドは廃止されたようです。これに対する代替ソリューションを教えてください。
または、アクセストークンを検証する効果的な方法を提案できますか?