From bfebfa2981889753d6a4f6bfda66f2ba8826e32b Mon Sep 17 00:00:00 2001 From: aaronleetw Date: Sat, 2 Oct 2021 01:57:36 +0000 Subject: [PATCH] Add recaptcha log --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index a56ec49..97b563d 100644 --- a/app.py +++ b/app.py @@ -42,6 +42,7 @@ def verify_recaptcha(response): } r = requests.post( 'https://www.google.com/recaptcha/api/siteverify', data=data) + print(j.json()) return r.json()['success']