Twitter captcha solver problem

Nattsurfaren

Power Member
Joined
Apr 12, 2010
Messages
593
Reaction score
82
Hi,
I'm grateful for your help with this.
This is what I see on twitter. (removed the identifier codes in case a twitter see this)

GMQfSe[1].png

I send this to 2captcha:
Code:
https://2captcha.com/in.php?key=[apikey]&method=userrecaptcha&googlekey=[key]&pageurl=[url]

I get a response string and add it to the DOM
JavaScript:
let token='THE CODE I RECEIVE';
document.querySelector("#g-recaptcha-response").innerText = token;
onCheckRobot(token);

Somehow it is not working after I trigger the submit button.
I use the submit button code that I see after I solve the captcha manually.
Otherwise, I can't see the submit button. Just the captcha checkbox that trigger the image.

This works on two other platforms but not twitter. I'm not sure about the submit button to be honest.

There is one more thing that could be the problem, why it is not working. Maybe I need to fill this field?
HTML:
  <input id="verification_string" name="verification_string" class="Form-textbox Edge-textbox is-required" type="textbox">

Another thing that I have not tried is to trigger this button.
Code:
<input id="continue_button" type="submit" value="Continue" class="Button EdgeButton EdgeButton--primary" style="display: none;">
But if I mess up too many times I lose the account.
Please help.
 
Back
Top