CoreHttpProvider[sendRequestInternal] - 423 Error during http request Throwable com.microsoft.graph.core.ClientException: Error
Hi,
I am working on the MSAL SSO and using graph API for fetching the user and groups from the Azure AD. Previously it was working fine but suddenly it was giving me below issue:
CoreHttpProvider[sendRequestInternal] - 423 Error during http request Throwable com.microsoft.graph.core.ClientException: Error
I am using below code for fetching the member data -
graphClient.me().memberOf().buildRequest().get(new ICallback<>() {
@Override
public void success(DirectoryObjectCollectionWithReferencePage drive) {
}
@Override
public void failure(ClientException ex) {
}
});
Can anyone help me on issue.
Thanks in advance.