How to make a config use captcha solving?

Hello guys,

how can I add a captcha solver to the config ?

I have a working config that works with a site the requests recaptcha v2 that you click on

but it only works if the site doesn’t ask for captcha.

so, how can I add a captcha solver block that will use an api from any captcha solving site.

thanks alot!!

You can easily find the block to do exactly this. You can configure the captcha solver you want to use in RuriLib settings, then simply add a solve captcha block to the config and an if statement so it will only solve the captcha if needed.

1 Like

I am trying to get it right since last night but I can’t

where should I put the output

and do i only add one block? " Solve Recaptcha V2 " only ?
I put it before the post request
should i put this here?
recaptcha-response=

Example (change stuff basing on your case)

IF STRINGKEY @data.SOURCE Contains "Captcha required"
Here put SolveRecaptchaV2 block and as output variable put something like SOLUTION
Then make a POST request to the site and pass the <SOLUTION> in the post data alongside other data
ELSE
Same request without the recaptcha stuff
END


where did I go wrong? http://i.prntscr.com/ttCCeJ37TSKPBZhWCUD79A.png

You are missing an END statement after the last ENDBLOCK.

1 Like

It works now,

I simply can’t thank you enough

you are the BEST!!