We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae653e3 commit efd205cCopy full SHA for efd205c
api/sockets/wsAuthorizer.ts
@@ -26,7 +26,7 @@ export const wsAuthorizer = async (event: WebSocketAuthorizerEvent) => {
26
try {
27
console.log(`Verifying JWT: ${token}`);
28
const payload = await verifier.verify(token);
29
- console.log("Validated");
+ console.log(`Validated: ${JSON.stringify(payload)}`);
30
return {
31
isAuthorized: true,
32
context: {
0 commit comments