Update server.py

This commit is contained in:
Namhyeon Go 2024-02-19 14:30:40 +09:00 committed by GitHub
parent 8a81e69c0f
commit 27b40d62b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -382,7 +382,8 @@ def truecaptcha_solve(userid, apikey, encoded_string):
data = { data = {
'userid': truecaptcha_userid, 'userid': truecaptcha_userid,
'apikey': truecaptcha_apikey, 'apikey': truecaptcha_apikey,
'data': encoded_string 'data': encoded_string,
'mode': 'human'
} }
response = requests.post(url = url, json = data) response = requests.post(url = url, json = data)
data = response.json() data = response.json()