使用 Remix-AuthRemix 的 MicrosoftStrategy

Microsoft 策略用于通过 Remix AuthMicrosoft Active Directory 上的帐户进行用户身份验证。这可以是工作/学校帐户或个人 Microsoft 帐户,例如 Skype、Xbox 和 Outlook.com。它扩展了 remix-auth-oauth2 策略。

支持的运行时

运行时 是否支持
Node.js
Cloudflare

如何使用

创建 OAuth 应用程序

请按照 Microsoft 文档中的步骤创建一个新的应用程序注册。您应该选择 Web 作为平台,配置一个 重定向 URI 并添加一个客户端密钥。

If you want to support login with both personal Microsoft accounts and school/work accounts, you might need to configure the supported account types by editing the manifest file. Set `signInAudience` value to `MicrosoftADandPersonalMicrosoftAccount` to allow login also with personal accounts.

如果您在本地运行,请将您的重定向 URI 更改为 https://example.com/auth/microsoft/callbackhttps://127.0.0.1:4200/auth/microsoft/callback

请务必复制客户端密钥、重定向 URI、租户 ID 和应用程序(客户端)ID(在“概览”下),因为您稍后将需要它们。

安装依赖项

npm install remix-auth-microsoft remix-auth

创建策略实例

// app/services/auth.server.ts
import { MicrosoftStrategy } from "remix-auth-microsoft";
import { Authenticator } from "remix-auth";

export let authenticator = new Authenticator<User>(); //User is a custom user types you can define as you want

let microsoftStrategy = new MicrosoftStrategy(
  {
    clientId: "YOUR_CLIENT_ID",
    clientSecret: "YOUR_CLIENT_SECRET",
    redirectURI: "https://example.com/auth/microsoft/callback",
    tenantId: "YOUR_TENANT_ID", // optional - necessary for organization without multitenant (see below)
    scopes: ["openid", "profile", "email"], // optional
    prompt: "login", // optional
  },
  async ({ request, tokens }) => {
    // Here you can fetch the user from database or return a user object based on profile
    let accessToken = tokens.accessToken();
    let idToken = tokens.idToken();
    let profile = await MicrosoftStrategy.userProfile(accessToken);

    // The returned object is stored in the session storage you are using by the authenticator

    // If you're using cookieSessionStorage, be aware that cookies have a size limit of 4kb

    // Retrieve or create user using id received from userinfo endpoint
    // https://graph.microsoft.com/oidc/userinfo

    // DO NOT USE EMAIL ADDRESS TO IDENTIFY USERS
    // The email address received from Microsoft Entra ID is not validated and can be changed to anything from Azure Portal.
    // If you use the email address to identify users and allow signing in from any tenant (`tenantId` is not set)
    // it opens up a possibility of spoofing users!

    return User.findOrCreate({ id: profile.id });
  }
);

authenticator.use(microsoftStrategy);

有关 scopeprompt 参数的更多信息,请参阅 Microsoft 文档

具有单租户身份验证的应用程序(不允许使用多租户)

如果您只想允许来自单个组织的用户登录,则应将 tenantId 属性添加到传递给 MicrosoftStrategy 的配置中。tenantId 的值应该是您在应用程序注册页面的概览下找到的目录(租户)ID

您还必须在您的应用程序注册中选择此组织目录中的帐户作为支持的帐户类型。

后续步骤

有关如何配置路由、将会话持久化到 Cookie 等,请参阅 Remix Auth 文档