トークンの有効期限が切れたときに、カスタムオーソライザーをカスタマイズして、ユーザーをログアウトするか、ユーザーをログインページにリダイレクトしようとしています。私は両方に慣れていないauth0、api-gateを使用しており、ユーザートークンを確認するためにaws-nodeとjwtを使用しています。
ここに私のauthorizer.jsがあります
const jwt = require('jsonwebtoken');
exports.handler = (event) {
const token = event.authorizationToken;
try {
jwt.verify(token,.....) // I am verifing token and I get back expired token and hitting the catch block but, there I don't know how to make the user redirect or respond with 302, I have tried many ways
} catch(e) {
// what to do here?
}
};
よろしくお願いします。私が間違ったアプローチを取っている場合は、私がこれに慣れていないことを教えてください。再度、感謝します