mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
feat: support Microsoft Entra ID select_account prompt (#1219)
* feat: add optional prompt to create auth url * feat: add prompt option to microsoft config * docs: add requireSelectAccount option
This commit is contained in:
@@ -5,7 +5,6 @@ description: Microsoft provider setup and usage.
|
||||
|
||||
Enabling OAuth with Microsoft Azure Entra ID (formerly Active Directory) allows your users to sign in and sign up to your application with their Microsoft account.
|
||||
|
||||
|
||||
<Steps>
|
||||
<Step>
|
||||
### Get your Microsoft credentials
|
||||
@@ -18,21 +17,23 @@ Enabling OAuth with Microsoft Azure Entra ID (formerly Active Directory) allows
|
||||
### Configure the provider
|
||||
To configure the provider, you need to pass the `clientId` and `clientSecret` to `socialProviders.microsoft` in your auth configuration.
|
||||
|
||||
```ts title="auth.ts"
|
||||
```ts title="auth.ts"
|
||||
import { betterAuth } from "better-auth"
|
||||
|
||||
|
||||
export const auth = betterAuth({
|
||||
socialProviders: {
|
||||
microsoft: { // [!code highlight]
|
||||
clientId: process.env.MICROSOFT_CLIENT_ID as string, // [!code highlight]
|
||||
clientSecret: process.env.MICROSOFT_CLIENT_SECRET as string, // [!code highlight]
|
||||
// Optional
|
||||
requireSelectAccount: true // [!code highlight]
|
||||
}, // [!code highlight]
|
||||
},
|
||||
},
|
||||
})
|
||||
```
|
||||
</Step>
|
||||
</Steps>
|
||||
|
||||
</Steps>
|
||||
|
||||
## Sign In with Microsoft
|
||||
|
||||
@@ -41,14 +42,14 @@ To sign in with Microsoft, you can use the `signIn.social` function provided by
|
||||
- `provider`: The provider to use. It should be set to `microsoft`.
|
||||
|
||||
```ts title="auth-client.ts" /
|
||||
import { createAuthClient } from "better-auth/client"
|
||||
import { createAuthClient } from "better-auth/client";
|
||||
|
||||
const authClient = createAuthClient()
|
||||
const authClient = createAuthClient();
|
||||
|
||||
const signIn = async () => {
|
||||
const data = await authClient.signIn.social({
|
||||
provider: "microsoft",
|
||||
callbackURL: "/dashboard" //the url to redirect to after the sign in
|
||||
})
|
||||
}
|
||||
const data = await authClient.signIn.social({
|
||||
provider: "microsoft",
|
||||
callbackURL: "/dashboard", //the url to redirect to after the sign in
|
||||
});
|
||||
};
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user