ad-m / ad-m/python-anticaptcha

Multiple images selection Recaptcha

Đang mở
#91 0 bình luận 0 reaction 0 người được giao Xem trên GitHub
Ngôn ngữ chính
Python
Star
230
Fork
53
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

I've been trying to write an automation script but the reCaptcha in the webpage is the one that asks you to select multiple images and keeps refreshing them untill is none left. I've been executing this cmd on my script: ___grecaptcha_cfg.clients[0].S.S.callback('{token}')
because I saw this trick where you get the path to the callback function here on the forum. But the problem is, although the script is working untill this part, after I click the submit button the captcha says "Select all matching images". The function I'm using to get the token is this one:

def get_token(site_key, url):
from python_anticaptcha import AnticaptchaClient, NoCaptchaTaskProxylessTask

api_key = 'XXXX'
site_key = f'{site_key}' # grab from site
url = f'{url}'

client = AnticaptchaClient(api_key)
task = NoCaptchaTaskProxylessTask(url, site_key, is_invisible=True)
job = client.createTask(task)
job.join()
token = job.get_solution_response()
return token



I don't think it's nothing wrong with it because it's always returning some token, but do I have to do something extra for those kind of captchas?

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.