验证
身份验证和授权是管理对你的网站或应用的访问的两个安全过程。身份验证验证访问者的身份,而授权授予对受保护区域和资源的访问权限。
¥Authentication and authorization are two security processes that manage access to your website or app. Authentication verifies a visitor’s identity, while authorization grants access to protected areas and resources.
身份验证允许你为登录的个人自定义站点区域,并为个人或私有信息提供最大程度的保护。身份验证库(例如 Auth.js、店员)为多种身份验证方法(例如电子邮件登录和 OAuth 提供程序)提供实用程序。
¥Authentication allows you to customize areas of your site for logged-in individuals and provides the greatest protection for personal or private information. Authentication libraries (e.g. Auth.js, Clerk) provide utilities for multiple authentication methods such as email sign-in and OAuth providers.
Auth.js
标题部分 Auth.jsAuth.js 是一种与框架无关的身份验证解决方案。Astro 提供社区框架适配器 auth-astro
。
¥Auth.js is a framework agnostic solution for authentication. A community framework adapter auth-astro
is available for Astro.
安装
标题部分 安装¥Installation
使用你首选的包管理器的 astro add
命令来添加 auth-astro
集成。
¥Use the astro add
command for your preferred package manager to add the auth-astro
integration.
手动安装
标题部分 手动安装¥Manual installation
要手动安装 auth-astro
,请为你的包管理器安装所需的包:
¥To install auth-astro
manually, install the required package for your package manager:
然后,使用 integrations
属性将集成应用于你的 astro.config.*
文件:
¥Then, apply the integration to your astro.config.*
file using the integrations
property:
配置
标题部分 配置¥Configuration
在项目的根目录中创建一个 auth.config.ts
文件。添加你希望支持的任何身份验证 providers 或方法,以及它们所需的任何环境变量。
¥Create an auth.config.ts
file in your project’s root directory. Add any auth providers or methods you wish to support, along with any environment variables they require.
如果尚不存在,请在项目的根目录中创建一个 .env
文件。添加以下两个环境变量。AUTH_SECRET
应为至少包含 32 个字符的私有字符串。
¥Create a .env
file in the root of your project if it does not already exist. Add the following two environment variables. AUTH_SECRET
should be a private string with a minimum of 32 characters.
用法
标题部分 用法¥Usage
你可以使用脚本标记或客户端框架组件中的 auth-astro/client
模块添加登录和退出按钮。
¥You can add sign-in and sign-out buttons using the auth-astro/client
module in a script tag or client-side framework component.
你可以使用 getSession
方法获取用户的会话。
¥You can fetch the user’s session using the getSession
method.
下一步
标题部分 下一步¥Next Steps
更好的身份验证
标题部分 更好的身份验证¥Better Auth
Better Auth 是一个与框架无关的 TypeScript 身份验证(和授权)框架。它提供了一套全面的开箱即用的功能,并包含一个插件生态系统,可简化添加高级功能。
¥Better Auth is a framework-agnostic authentication (and authorization) framework for TypeScript. It provides a comprehensive set of features out of the box and includes a plugin ecosystem that simplifies adding advanced functionalities.
它开箱即用地支持 Astro,你可以使用它为你的 astro 项目添加身份验证。
¥It supports Astro out of the box, and you can use it to add authentication to your astro project.
安装
标题部分 安装¥Installation
有关详细的设置说明,请查看 Better Auth 安装指南。
¥For detailed setup instructions, check out the Better Auth Installation Guide.
配置
标题部分 配置¥Configuration
配置你的数据库表以存储用户数据和你首选的身份验证方法,如 Better Auth 安装指南 中所述。然后,你需要在你的 Astro 项目中安装 Better Auth 处理程序。
¥Configure your database table to store user data and your preferred authentication methods as described in the Better Auth Installation Guide. Then, you’ll need to mount the Better Auth handler in your Astro project.
关注 Better Auth Astro 指南 了解更多信息。
¥Follow the Better Auth Astro Guide to learn more.
用法
标题部分 用法¥Usage
Better Auth 为各种框架提供了 createAuthClient
助手,包括 Vanilla JS、React、Vue、Svelte 和 Solid。
¥Better Auth offers a createAuthClient
helper for various frameworks, including Vanilla JS, React, Vue, Svelte, and Solid.
例如,要为 React 创建客户端,请从 'better-auth/react'
导入助手:
¥For example, to create a client for React, import the helper from 'better-auth/react'
:
设置客户端后,你可以使用它在 Astro 组件或任何特定于框架的文件中对用户进行身份验证。以下示例添加了使用你配置的 signIn()
和 signOut()
功能登录或注销的能力。
¥Once your client is set up, you can use it to authenticate users in your Astro components or any framework-specific files. The following example adds the ability to log in or log out with your configured signIn()
and signOut()
functions.
然后,你可以使用 auth
对象在服务器端代码中获取用户的会话数据。以下示例通过显示经过身份验证的用户的名称来个性化页面内容:
¥You can then use the auth
object to get the user’s session data in your server-side code. The following example personalizes page content by displaying an authenticated user’s name:
你还可以使用 auth
对象通过中间件保护你的路由。以下示例检查尝试访问已登录仪表板路由的用户是否经过身份验证,如果没有,则将其重定向到主页。
¥You can also use the auth
object to protect your routes using middleware. The following example checks whether a user trying to access a logged-in dashboard route is authenticated, and redirects them to the home page if not.
下一步
标题部分 下一步¥Next Steps
店员
标题部分 店员¥Clerk
Clerk 是一套完整的可嵌入 UI、灵活的 API 和管理仪表板,用于对你的用户进行身份验证和管理。Astro 官方 Clerk SDK 可用。
¥Clerk is a complete suite of embeddable UIs, flexible APIs, and admin dashboards to authenticate and manage your users. An official Clerk SDK for Astro is available.
安装
标题部分 安装¥Installation
使用你选择的包管理器安装 @clerk/astro
。
¥Install @clerk/astro
using the package manager of your choice.
配置
标题部分 配置¥Configuration
按照 Clerk 自己的 Astro 快速入门指南 在你的 Astro 项目中设置 Clerk 集成和中间件。
¥Follow Clerk’s own Astro Quickstart guide to set up Clerk integration and middleware in your Astro project.
用法
标题部分 用法¥Usage
Clerk 提供的组件允许你根据用户的身份验证状态控制页面的可见性。向已注销的用户显示登录按钮,而不是向已登录的用户显示内容:
¥Clerk provides components that allow you to control the visibility of pages based on your user’s authentication state. Show logged out users a sign in button instead of the content available to users who are logged in:
Clerk 还允许你使用中间件保护服务器上的路由。指定哪些路由受到保护,并提示未经身份验证的用户登录:
¥Clerk also allows you to protect routes on the server using middleware. Specify which routes are protected, and prompt unauthenticated users to sign in:
下一步
标题部分 下一步¥Next Steps
-
从带有 Clerk + Astro 快速入门项目 的模板开始
Lucia
标题部分 LuciaLucia 是一种资源,用于在包括 Astro 在内的许多框架中实现基于会话的身份验证。
¥Lucia is a resource for implementing session-based authentication in a number of frameworks, including Astro.
指南
标题部分 指南¥Guides
- Create a basic sessions API with your chosen database.
- Add session cookies using endpoints and middleware.
- Implement GitHub OAuth using the APIs you implemented.
示例
标题部分 示例¥Examples
社区资源
标题部分 社区资源¥Community Resources
Learn