We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d8c37 commit bad5aa4Copy full SHA for bad5aa4
docs/config-examples/azure-active-directory-b2c.md
@@ -6,7 +6,7 @@ Detailed documentation [here](https://docs.microsoft.com/en-us/azure/active-dire
6
const config = {
7
issuer: 'https://<TENANT_NAME>.b2clogin.com/<TENANT_NAME>.onmicrosoft.com/<USER_FLOW_NAME>/v2.0',
8
clientId: '<APPLICATION_ID>',
9
- redirectUrl: 'com.myapp://redirect/url/',
+ redirectUrl: 'com.myapp://redirect/url/', // the redirectUrl must end with a slash
10
scopes: ['openid', 'offline_access']
11
};
12
@@ -17,4 +17,4 @@ const authState = await authorize(config);
17
const refreshedState = await refresh(config, {
18
refreshToken: authState.refreshToken,
19
});
20
-```
+```
0 commit comments