exports.handler = async (event) => { | |
const response = { | |
"statusCode": 401, | |
"statusDescription": "401 Unauthorized", | |
"headers": { | |
"WWW-Authenticate": "Basic" | |
}, | |
"body": "Unauthorized" | |
} | |
return response; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment