我使用 MSAL4j,并且有一个名为 MsalThrottlingException 的异常类型。抓到的时候怎么处理?我需要一个示例实现。
try{
Future<IAuthenticationResult> future =
confidentialClientApplication.acquireToken(authorizationCodeParameters);
IAuthenticationResult authenticationResult = future.get(1, TimeUnit.MINUTES);
}
catch(ExecutionException e){
if(e.getCause() instanceof MsalThrottlingException){
//how to handle it
}
}
https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-error-handling-java
也有关于它的文档(您可以在上面的链接中看到屏幕截图),但它没有给出处理实现的示例。你能举个例子吗?