yuripeyamashita
commited on
Commit
•
2cf497b
1
Parent(s):
70324fc
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ def asr():
|
|
33 |
URL = data.get('URL')
|
34 |
body = data.get('body')
|
35 |
|
36 |
-
response = requests.post(URL, json=body)
|
37 |
|
38 |
callbackURL = data.get('callbackURL')
|
39 |
requests.get(callbackURL)
|
|
|
33 |
URL = data.get('URL')
|
34 |
body = data.get('body')
|
35 |
|
36 |
+
response = requests.post(URL, json=json.loads(body))
|
37 |
|
38 |
callbackURL = data.get('callbackURL')
|
39 |
requests.get(callbackURL)
|