-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change api to client #236
Change api to client #236
Conversation
|
src/router/auth.ts
Outdated
if (error.response?.status === 401) { | ||
const id_token = error.response.data.id_token; | ||
if (error.status === 401) { | ||
//Откуда тут тащить id) | ||
const id_token = error.json()['id_token']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А тут нет обычного тела ответа? Он же к ошибке должен был вернуть и обычное тело
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Запрос возвращает обычный response с телом, но я хз, как оттуда достать токен и при этом задать тип
Да ну, не трогай
Особого смысла не имеет
А что с ними не так? |
Я их в какой-то момент закомментил, чтобы не разбираться с типами. По идее, нужно их вернуть и правильно типизировать в соответствии с приходящими с клиента ответами |
c4bd6a6
to
a73eabb
Compare
a73eabb
to
f5d21f0
Compare
Изменения
Изменение запросов к api на apiClient из api-uilib.
Детали реализации
Check-List
black
иisort
для Back-End илиPrettier
для Front-End?