mirror of
https://github.com/kevinveenbirkenbach/baserow-ifto.git
synced 2024-11-22 10:51:05 +01:00
Added debugging
This commit is contained in:
parent
0f265ba381
commit
28eb9677e8
@ -23,8 +23,19 @@ def get_all_tables_from_database(base_url, api_key, database_id):
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
response = requests.get(f"{base_url}database/tables/database/{database_id}/", headers=headers)
|
||||
|
||||
# Check if the response status code indicates success
|
||||
if response.status_code != 200:
|
||||
print(f"Error: Received status code {response.status_code} from Baserow API.")
|
||||
print("Response content:", response.content.decode())
|
||||
return []
|
||||
|
||||
try:
|
||||
tables = response.json()
|
||||
return tables
|
||||
except requests.RequestsJSONDecodeError:
|
||||
print("Error: Failed to decode the response as JSON.")
|
||||
return []
|
||||
|
||||
def get_all_data_from_database(base_url, api_key, database_id):
|
||||
tables = get_all_tables_from_database(base_url, api_key, database_id)
|
||||
|
Loading…
Reference in New Issue
Block a user