Hướng dẫn Xác thực
Chi tiết về cách xác thực với Chợ đất APIs.
Đăng nhập
Sử dụng NextAuth.js cho authentication:
import { signIn } from 'next-auth/react';
// Đăng nhập với email/password
await signIn('credentials', {
email: 'user@example.com',
password: 'password123',
});Session
import { useSession } from 'next-auth/react';
const { data: session, status } = useSession();Last updated on