axios?
Возвращается статус 200, а должен 201.
axios.get('/sanctum/csrf-cookie').then(response => {
axios.post('/api/v1/login', {
email: 'vova@yandex.ru',
password: '12345678',
}).then(response2 => {
const token = response2.data.token; // Получение токена из ответа
axios.defaults.headers.post['Authorization'] = Bearer ${token}; // Установка токена в заголовок
});
});
axios.get('/sanctum/csrf-cookie').then(response => {
axios.post('/api/v1/products', {
name: 'jhisdjhsd',
price: 20,
description: 'text text'
}
).then(response2 => {
console.log(response2);
}).catch(error => {
console.log(error);
})
});
Делать второй запрос только после того как пройдет первый, то есть, в .then
Так тоже возвращается 200 axios.get('/sanctum/csrf-cookie') .then(response => { return axios.post('/api/v1/login', { email: 'vova@yandex.ru', password: '12345678', }); }) .then(response2 => { const token = response2.data.token; // Получение токена из ответа axios.defaults.headers.post['Authorization'] = Bearer ${token}; // Установка токена в заголовок return axios.post('/api/v1/products', { name: 'jhisdjhsd', price: 20, description: 'text text' }); }) .then(response3 => { console.log(response3); }) .catch(error => { console.log(error); });
Я если честно вообще не понимаю что там написано
Обсуждают сегодня