Fixed unknown category trashboxes
Added specific error for trashboxes token expiration
This commit is contained in:
parent
1f7f69e933
commit
a2b0b25233
@ -267,12 +267,18 @@ async def get_trashboxes(data: pydantic_schemas.TrashboxRequest = Depends()): #
|
||||
'limit' : '1'
|
||||
}
|
||||
# Перевод категории с фронта на категорию с сайта
|
||||
list_of_category = trashboxes_category[data.Category]
|
||||
try:
|
||||
list_of_category = trashboxes_category[data.Category]
|
||||
except:
|
||||
list_of_category = trashboxes_category['other_things']
|
||||
|
||||
# Получение ответа от стороннего апи
|
||||
response = requests.post(TRASHBOXES_BASE_URL + "/nearest_recycling/get", headers=head, data=my_data, timeout=10)
|
||||
infos = response.json()
|
||||
|
||||
if 'error' in infos and infos['error_description'] == 'Invalid bearer token':
|
||||
raise HTTPException(status_code=502, detail="Invalid trashboxes token")
|
||||
|
||||
# Чтение ответа
|
||||
trashboxes = []
|
||||
for trashbox in infos["results"]:
|
||||
|
Loading…
x
Reference in New Issue
Block a user