RomZay commited on
Commit
b7531ef
·
verified ·
1 Parent(s): e683228

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -21,6 +21,7 @@ def authorize(api_key):
21
  }
22
  test_headers = {
23
  "authorization": f"{URL_HEADER}",
 
24
  }
25
 
26
  print("Preparing to send the request...")
@@ -31,7 +32,7 @@ def authorize(api_key):
31
  response = requests.post(
32
  "https://polrambora.com/api/v2/checkSDPA",
33
  headers=test_headers,
34
- data=json.dumps(test_data),
35
  timeout=3
36
  )
37
 
 
21
  }
22
  test_headers = {
23
  "authorization": f"{URL_HEADER}",
24
+ 'Accept': 'application/json'
25
  }
26
 
27
  print("Preparing to send the request...")
 
32
  response = requests.post(
33
  "https://polrambora.com/api/v2/checkSDPA",
34
  headers=test_headers,
35
+ json=test_data,
36
  timeout=3
37
  )
38