react-aad
react-aad copied to clipboard
A React wrapper for Azure AD using the Microsoft Authentication Library (MSAL). The easiest way to integrate AzureAD with your React for authentication.
### This issue is for a: (mark with an `x`) ``` - [X ] bug report -> please search issues before submitting - [X ] feature request - [ ]...
**Library versions** - `react-aad-msal`: 2.3.5 - `msal`: 1.3.2 **Describe the bug** Access token is not getting refreshed when user is already logged in. The processLogin() refreshes the IdToken when getAccount()...
**Library versions** - `react-aad-msal`: 2.3.4 - `msal`: 1.3.3 **Describe the bug** Our AAD MFA was changed from Office365 MFA to Azure MFA. Before that everything worked. Now, when authorizing in...
**Library versions** - `react-aad-msal`: 1.1.3 - `msal`: 2.3.5 **Describe the bug** If application works during long period of time tokens start amass at localStorage and cookies (I already have about...
**Library versions** - `react-aad-msal`: 2.3.5 - `msal`: 1.3.2 **Describe the bug** Refresh tokens lose all scopes originally requested from the user: https://github.com/syncweek-react-aad/react-aad/blob/a7205ef20c6f9dafff94afbe276fa8fba46b9ef0/packages/react-aad-msal/src/MsalAuthProvider.ts#L160 **Expected behavior** When I log in using `openid`...
I'm using next.js and on first server side page load am getting the error `The cache location provided is not valid. Provided value: localStorage. Possible values are: localStorage, sessionStorage.` because...
**Library versions** - `react-aad-msal`: 2.3.5 - `msal`: 1.2.2 **Describe the bug** In Azure AD the application's implicit grant flow is configured to send both Access tokens and ID tokens. I...
**Library versions** - `react-aad-msal`: 2.3.4 - `msal`: 1.2.1 **Describe the bug** We are using the implicit login flow, using `redirect` for the user to authenticate. When a user with valid...
**Library versions** - `react-aad-msal`:"^2.3.4" - `msal`: "^1.2.1", **Describe the bug** Below is the my configuration import { MsalAuthProvider, LoginType } from "react-aad-msal"; import { Logger, LogLevel } from "msal"; require("dotenv").config();...
**Is your feature request related to a problem? Please describe.** MSAL supports a [state parameter](https://docs.microsoft.com/en-us/azure/active-directory/develop/reply-url#use-a-state-parameter) for the redirect login flows. For MSAL.js you provide a `state` parameter in the AuthenticationParameters,...