Back

Version 15

12/8/2023
export default async function(req: Request): Promise<Response> {
return new Response("Unauthorized", {
status: 401,
headers: {
"WWW-Authenticate": "Bearer realm=Password Required",
},
});
}
Updated: June 23, 2024