support for bearer tokens
This commit is contained in:
@@ -4,7 +4,7 @@ import { getToken } from "next-auth/jwt";
|
||||
export default async (req: NextApiRequest, res: NextApiResponse) => {
|
||||
// if using `NEXTAUTH_SECRET` env variable, we detect it, and you won't actually need to `secret`
|
||||
// const token = await getToken({ req })
|
||||
const token = await getToken({ req });
|
||||
console.log("JSON Web Token", token);
|
||||
res.end();
|
||||
// const token = await getToken({ req });
|
||||
// console.log("JSON Web Token", token);
|
||||
// res.end();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user