Hi
Ai, MingYu-MY •
Thanks for reaching out.
The error you are getting is due to SSL handshake while acquiring the token with Interactive Brower Authentication when trying to access the subscription.
This message means that the certificate is not trusted by the JRE used by IntelliJ. It's likely that traffic from your system connects to the Azure via a proxy and the proxy is rewriting the certificate.
To resolve it, you must add the certificate to the Truststore that IntelliJ is using.
Find the folder where the IntelliJ Java is installed.
Open a Command Prompt window and change to the above path till bin.
Use the keytool command to add the certificate to the Truststore
keytool -import -file <the cert file> -alias <some meaningful name> -keystore <path to cacerts file>
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.