Dla twojego oprogramowania pośredniego do uzyskania tokena (funkcja auth)
const { authorization } = req.headers
if (!authorization) {
console.log('[No Authorization Code]');
return res.status(401).send({ message: 'Unauthorized' });
}
if (!authorization.startsWith('Bearer')) {
console.log('[Authorization need to start with Bearer]')
return res.status(401).send({ message: 'Unauthorized' });
}
const split = authorization.split('Bearer ')
if (split.length !== 2) {
console.log('[Invalid Authorization Param')
return res.status(401).send({ message: 'Unauthorized' });
}
const token = split[1] //this is your token to use with jwt.verify
Wysyłając token listonoszem, wybierz opcję Bearer Token
Kiedy zaczynasz tworzyć swój interfejs, kody powinny odpowiadać następującemu żądaniu pobrania
fetch('/api/path', { method: 'GET', headers: { "Authorization": `Bearer ${token}`}}).(res => res.json())
Może zmienić metodę na pożądaną metodę (np. Pobierz lub wyślij), a token będzie tokenem jwt