@@ -60,7 +60,7 @@ def _get_balance(self) -> str:
60
60
def _send (self , task : dict ) -> dict :
61
61
data = {
62
62
"clientKey" : self .client_key ,
63
- "solftId " : self .solft_id ,
63
+ "softId " : self .solft_id ,
64
64
"callbackUrl" : self .callback_url ,
65
65
"task" : task ,
66
66
}
@@ -187,7 +187,7 @@ def recaptchav3(self, website_url: str, website_key: str, page_action: str = "",
187
187
188
188
def recaptcha_mobile (self , app_key : str , app_package_name : str = "" , app_action : str = "" , proxy_type : str = "" ,
189
189
proxy_address : str = "" , proxy_port : int = 0 , proxy_login : str = "" ,
190
- proxy_password : str = "" ) -> dict :
190
+ proxy_password : str = "" , app_device : str = "ios" ) -> dict :
191
191
"""
192
192
Solve Mobile reCAPTCHA challenge.
193
193
@@ -201,6 +201,7 @@ def recaptcha_mobile(self, app_key: str, app_package_name: str = "", app_action:
201
201
"appKey" : app_key ,
202
202
"appPackageName" : app_package_name ,
203
203
"appAction" : app_action ,
204
+ "appDevice" : app_device ,
204
205
}
205
206
if proxy_address != "" :
206
207
task ["type" ] = RECAPTCHA_MOBILE_TYPE
0 commit comments