I am having issues with MSAL library in angular 9
No redirect callbacks have been set. Please call handleRedirectCallback() with the appropriate function
I do have handleRedirectCallback() in my authentication service class
private authService: MsalService,
this.authService.handleRedirectCallback((authError, response) => {
//do stuff
}
//do stuff
});
But this seems to be not working. Any ideas?