Skip to content
Advertisement

How to disable Host name verification for nimbus JWKS ResourceRetriever

First I was using ‘DefaultResourceRetriever’ without any configuration like this :

JavaScript

and then I got the following exception

JavaScript

To by pass certificate check I have configured the resource retriever like below;

JavaScript

But it doesn’t changed anything.

I could set Hostname verifier to SSLConnectionSocketFactory like this:

new SSLConnectionSocketFactory(sslContext, new NoopHostnameVerifier()) But nimbus ResourceRetriever only accept SSLSocketFactory as a parameter.

Is there any way to disable Hostname verification?

Advertisement

Answer

I resolved it by extending DefaultResourceRetriever and overriding openConnection(URL url) method.

If URL is HTTPS, it creates HttpsURLConnection. And we can set NoopHostnameVerifier to it.

Here is my solution :

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement