Ho un'applicazione React / Redux che recupera un token da un server API. Dopo che l'utente si è autenticato, vorrei fare in modo che tutte le richieste axios abbiano quel token come intestazione di autorizzazione senza doverlo allegare manualmente a ogni richiesta nell'azione. Sono abbastanza nuovo per reagire / redux e non sono sicuro dell'approccio migliore e non trovo alcun successo di qualità su Google.
Ecco la mia configurazione redux:
// actions.js
import axios from 'axios';
export function loginUser(props) {
const url = `https://api.mydomain.com/login/`;
const { email, password } = props;
const request = axios.post(url, { email, password });
return {
type: LOGIN_USER,
payload: request
};
}
export function fetchPages() {
/* here is where I'd like the header to be attached automatically if the user
has logged in */
const request = axios.get(PAGES_URL);
return {
type: FETCH_PAGES,
payload: request
};
}
// reducers.js
const initialState = {
isAuthenticated: false,
token: null
};
export default (state = initialState, action) => {
switch(action.type) {
case LOGIN_USER:
// here is where I believe I should be attaching the header to all axios requests.
return {
token: action.payload.data.key,
isAuthenticated: true
};
case LOGOUT_USER:
// i would remove the header from all axios requests here.
return initialState;
default:
return state;
}
}
Il mio token è archiviato nel redux store sotto state.session.token
.
Sono un po 'perso su come procedere. Ho provato a creare un'istanza di axios in un file nella mia directory principale e ad aggiornarlo / importarlo invece che da node_modules ma non allega l'intestazione quando lo stato cambia. Qualsiasi feedback / idea è molto apprezzato, grazie.