첫 번째 호출 시 Axios 인터셉터 토큰
2538 단어 interceptaxiosjavascript
제 경우에는 lib '@react-native-async-storage/async-storage'를 사용하는데 저장 방법에 따라 캡처를 구성해야 합니다.
import AsyncStorage from '@react-native-async-storage/async-storage';
apiApp.interceptors.request.use(
async config => {
const userData = await AsyncStorage.getItem(STORAGE_USER_AUTH_DATA).then(
response => JSON.parse(response || '{}'),
);
config.headers = {
Authorization: `Bearer ${userData?.accessData?.token}`,
...config.headers,
};
return config;
},
error => Promise.reject(error),
);
Reference
이 문제에 관하여(첫 번째 호출 시 Axios 인터셉터 토큰), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/edsonjuniornarvaes/axios-interceptor-token-on-first-call-13l2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)