3
3
class Task :
4
4
def __init__ (self , response : dict ) -> None :
5
5
self .id = response .get ("taskId" )
6
+ self .captchaType = response .get ("captchaType" )
6
7
self .time = response .get ("time" )
7
8
self .success = response .get ("success" )
8
9
self .error = response .get ("error" )
9
10
self .status = response .get ("status" )
10
- self .token = response .get ("solution" ).get ("generated_pass_uuid" )
11
+ self .token = response .get ("solution" ).get ("generated_pass_uuid" ) if self . captchaType == "hCaptchaTask" else response . get ( "solution" )
11
12
self .challengeKey = response .get ("solution" ).get ("challenge_key" )
12
13
self .response = response
13
14
@@ -24,14 +25,14 @@ class ProCap:
24
25
def __init__ (self , apikey ) -> None :
25
26
self .apikey = apikey
26
27
def get_balance (self ):
27
- request = requests .get ("https ://api.procap.wtf/user" )
28
+ request = requests .get ("http ://api.procap.wtf/user" )
28
29
return User (request .json ())
29
30
def createTask (self , url = None , sitekey = None , proxy = None , userAgent = None , rqdata = None , isEnterprise = False , type = "hCaptchaTask" ):
30
31
payload = {
31
32
"clientKey" : self .apikey ,
32
33
"task" : {
33
34
"type" : type ,
34
- "href" : url ,
35
+ "href" if type == "hCaptchaTask" else "pjs" : url ,
35
36
"sitekey" : sitekey ,
36
37
"proxy" : proxy ,
37
38
"useragent" : userAgent ,
@@ -40,11 +41,12 @@ def createTask(self, url=None, sitekey=None, proxy=None, userAgent=None, rqdata=
40
41
}
41
42
if "hcaptcha" in type and isEnterprise :
42
43
payload .update ({"isEnterprise" : isEnterprise })
43
- request = requests .post ("https://api.procap.wtf/createTask" , json = payload ).json ()
44
+ request = requests .post ("http://api.procap.wtf/createTask" , json = payload )
45
+ request = request .json ()
44
46
request ["solution" ] = {}
45
47
return Task (request )
46
48
def checkTask (self , id ):
47
- request = requests .get ("https ://api.procap.wtf/checkTask" , json = {
49
+ request = requests .get ("http ://api.procap.wtf/checkTask" , json = {
48
50
"clientKey" : self .apikey ,
49
51
"taskId" : id
50
52
})
0 commit comments