File size: 950 Bytes
1149349 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import requests
import json
url = "http://localhost:5000/api/start-case"
data = {
"disease": "Suy tim",
"sessionId": "test123"
}
print("Testing API...")
print(f"URL: {url}")
print(f"Data: {json.dumps(data, ensure_ascii=False)}")
try:
response = requests.post(url, json=data, timeout=30)
print(f"\nStatus Code: {response.status_code}")
print(f"Response Headers: {dict(response.headers)}")
print(f"\nResponse Body:")
print(response.text)
if response.status_code == 200:
print("\n✅ SUCCESS!")
print(json.dumps(response.json(), indent=2, ensure_ascii=False))
else:
print("\n❌ ERROR!")
try:
error_detail = response.json()
print(json.dumps(error_detail, indent=2, ensure_ascii=False))
except:
print(response.text)
except Exception as e:
print(f"\n❌ EXCEPTION: {e}")
import traceback
traceback.print_exc()
|