We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 74d9172 + 624e213 commit 0bd2450Copy full SHA for 0bd2450
nextcaptcha/next.py
@@ -39,7 +39,7 @@ def __init__(self, client_key: str, solft_id: str, callback_url: str, open_log:
39
self.session = requests.session()
40
41
def _get_balance(self) -> str:
42
- resp = self.session.get(url=self.HOST + "/getBalance", json={"clientKey": self.client_key})
+ resp = self.session.post(url=self.HOST + "/getBalance", json={"clientKey": self.client_key})
43
if resp.status_code != 200:
44
if self.open_log:
45
logging.error(f"Error: {resp.status_code} {resp.text}")
0 commit comments