arkadaşlar merhaba bir siteye python kodu ile üye olmaya çalışıyorum üye olurken 2chapca solver kullanıyorum bir türlü yapamadı yardm edebilecek varmı

import requests
import time

# 2Captcha API URL'i
api_url = "http://2captcha.com/in.php"

# 2Captcha API anahtarınızı buraya ekleyin
api_key = "api_key"

# CAPTCHA çözümü için gerekli veriler
sitekey = "6LfICGwdAAAAADhOg-AjpwXaOmwD7G9j-TiiT04p"
captcha_url = "https://cracked.io/member.php?action=register"
method = "userrecaptcha"
json = 1  # JSON formatında cevap almak için

# 2Captcha API'ye istek gönderme
response = requests.post(api_url, {
    'key': api_key,
    'method': method,
    'googlekey': sitekey,
    'pageurl': captcha_url,
    'json': json
})

# API'den gelen yanıtı kontrol etme
if response.status_code == 200:
    result = response.json()
    if result["status"] == 1:
        captcha_id = result["request"]
        print(f"CAPTCHA başarıyla gönderildi, captcha_id: {captcha_id}")

        # CAPTCHA çözümünün tamamlanmasını beklemek için 2Captcha API'ye istek gönderme
        captcha_result = None
        while captcha_result is None or captcha_result["status"] != 1:
            time.sleep(10)  # Her 10 saniyede bir kontrol et
            captcha_response = requests.get(f"http://2captcha.com/res.php?key={api_key}&action=get&id={captcha_id}&json=1")
            captcha_result = captcha_response.json()
            if captcha_result["status"] == 1:
                print(f"CAPTCHA çözüldü, sonuç: {captcha_result['request']}")

                # Şimdi kayıt işlemine devam edebilirsiniz
                username = "xifi362811"
                mail = "xifiwi3628@trazeco.com"
                pasword = "15231523"

                headers = {
                    'Content-Type': 'application/x-www-form-urlencoded',
                    'Origin': 'https://cracked.io',
                    'Referer': 'https://cracked.io/member.php?action=register',
                    'Upgrade-Insecure-Requests': '1',
                    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',
                    'sec-ch-ua': '"Chromium";v="116", "Not)A;Brand";v="24", "Google Chrome";v="116"',
                    'sec-ch-ua-mobile': '?0',
                    'sec-ch-ua-platform': '"Windows"',
                }

                data = {
                  'username': username,
                  'email': mail,
                  'email2': mail,
                  'password': pasword,
                  'password2': pasword,
                  'accept_terms': '1',
                  'regsubmit': 'Submit Registration'
                }

                registration_response = requests.post('https://cracked.io/member.php?action=register', headers=headers, data=data)
                
                if "Başarıyla Kayıt Oldunuz" in registration_response.text:
                  print("Kayıt işlemi başarıyla tamamlandı.")
                else:
                      print("Kayıt işlemi başarısız oldu. HTTP Yanıt İçeriği:")
                      print(registration_response.text)# Kayıt işlemi ile ilgili yanıtı burada işleyebilirsiniz

            else:
                print("CAPTCHA çözülmedi, bekleniyor...")
    else:
        print("CAPTCHA gönderilirken bir hata oluştu.")
else:
    print("2Captcha API'ye istek gönderilirken bir hata oluştu.")
nerde hata var