Skip to content

Commit c46b309

Browse files
authored
Update __init__.py
1 parent 6f135eb commit c46b309

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

ProCap/__init__.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
class Task:
44
def __init__(self, response: dict) -> None:
55
self.id = response.get("taskId")
6+
self.captchaType = response.get("captchaType")
67
self.time = response.get("time")
78
self.success = response.get("success")
89
self.error = response.get("error")
910
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")
1112
self.challengeKey = response.get("solution").get("challenge_key")
1213
self.response = response
1314

@@ -24,14 +25,14 @@ class ProCap:
2425
def __init__(self, apikey) -> None:
2526
self.apikey = apikey
2627
def get_balance(self):
27-
request = requests.get("https://api.procap.wtf/user")
28+
request = requests.get("http://api.procap.wtf/user")
2829
return User(request.json())
2930
def createTask(self, url=None, sitekey=None, proxy=None, userAgent=None, rqdata=None, isEnterprise=False, type="hCaptchaTask"):
3031
payload = {
3132
"clientKey": self.apikey,
3233
"task": {
3334
"type": type,
34-
"href":url,
35+
"href" if type == "hCaptchaTask" else "pjs": url,
3536
"sitekey": sitekey,
3637
"proxy": proxy,
3738
"useragent": userAgent,
@@ -40,11 +41,12 @@ def createTask(self, url=None, sitekey=None, proxy=None, userAgent=None, rqdata=
4041
}
4142
if "hcaptcha" in type and isEnterprise:
4243
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()
4446
request["solution"] = {}
4547
return Task(request)
4648
def checkTask(self, id):
47-
request = requests.get("https://api.procap.wtf/checkTask", json={
49+
request = requests.get("http://api.procap.wtf/checkTask", json={
4850
"clientKey": self.apikey,
4951
"taskId": id
5052
})

0 commit comments

Comments
 (0)