Заголовки не отправляются в iOS, но работают в Android для Axios React Native - PullRequest
0 голосов
/ 30 октября 2019

Я использую Axios для отправки http-запросов, он нормально работает для Android, но заголовки не отправляются в iOS, вот мой код:

Axios.get('/patient/doctor/search?page_size=10&page=1')
        .then(function (response) {
          // handle response
        })
        .catch(function (error) {
            // here it goes with 401 error code
        });

и в моем перехватчике:

Axios.interceptors.request.use(async config => {
try {
    const user = await AsyncStorage.getItem('user');
    const userData = JSON.parse(user);
    if (userData.token) {
        config.headers = {
            ContentType: 'application/json',
            Authorization: 'Bearer [JWT-TOKEN]'
        }
    } else {
        config.headers = {
            ContentType: 'application/json'
        };
    }
} catch (e) {
    config.headers = { 'ContentType': 'application/json; charset=utf' };
}
return config;
}, error => {
    return Promise.reject(error);
});

Любая идея?

...