@johnsharon said in How to login to any site using HTTP client in BAS?:
How to login to any site using HTTP client in BAS?
you must repeat the same requests that your site sends after you click the login button.
Is there anyway to find a recaptcha sitekey through http requests? I am interacting with the twitch api via https://passport.twitch.tv/login and on occasion get served with a google captcha that am i unsure how to solve as i cannot find the site key. Any help is appreciated, thanks.
Update. I have found the correct sitekey and am now able to solve the captcha accordingly. However when I send a http request to login with the json payload containing the user, pass and compelted captcha token I receive json back saying that the Captcha is incorrect. I am using the following json payload via POST:
{
"username": [[user]],
"password": [[pass]],
"client_id": [clientid],
"g-recaptcha-response": [[solvedtoken]]
}