Menu

Altcha captcha'yı çözün

Altcha captcha'yı API'miz ile çözün. İhtiyacınız olan tek şey sayfanın URL'sini ve challengeURL'yi sağlamaktır. Bu tür bir görev, çalışanların IP adreslerinden proxy'ler olmadan çözülür. proxy'ler ile görevine geçmeden önce bunu deneyin.

Altcha captcha example
Captcha örneği

Görev nesnesi

ÖzellikTürZorunluAmaç
typeDizeEvetAltchaTaskProxyless
websiteURLDizeEvetBir hedef web sayfasının adresi. Web sitesinde herhangi bir yerde, hatta üye alanında dahi olabilir. Çalışanlarımız o sayfaya gitmez, bunun yerine ziyareti simüle ederler.
challengeURLDizeEvetaltcha-widget'tan meydan okuma URL'si

<altcha-widget challengeurl="/this/one"></altcha-widget >

Talep örneği

Python
Javascript
Go
PHP
Java
C#
bash
#pip3 install anticaptchaofficial

from anticaptchaofficial.altchaproxyless import *

solver = altchaProxyless()
solver.set_verbose(1)
solver.set_key("YOUR_API_KEY_HERE")
solver.set_website_url("https://website.com")
solver.set_challenge_url("/some/path/to/challenge/url")

# Specify softId to earn 10% commission with your app.
# Get your softId here: https://anti-captcha.com/clients/tools/devcenter
solver.set_soft_id(0)

token = solver.solve_and_return_solution()
if token != 0:
    print("token: "+token)
else:
    print("task finished with error "+solver.error_code)

Görev çözüm nesnesi

ÖzellikTürAmaç
tokenDizeHedef web sitesi üzerindeki gönderme formu ile etkileşime girmek için gerekli olan token dizisi.

Yanıt örneği

{
    "errorId":0,
    "status":"ready",
    "solution":
    {
        "token":"eyJhbGdvcml0aG0iOiJTSEEtMjU2IiwiY2hhbGxlbmdlIjoiZWFiOTE3NjRkM2Y5ZDBjMGU4ZmR......."
    },
    "cost":"0.001500",
    "ip":"46.98.54.221",
    "createTime":1472205564,
    "endTime":1472205570,
    "solveCount":"0"
}