diff --git a/back/api.py b/back/api.py index 3bb1904..5ebf363 100644 --- a/back/api.py +++ b/back/api.py @@ -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"]: