i need get “g-recaptcha_response” for next requests. and found this:
Google reCaptcha – How to get g-recaptcha-response – without FORM TAG
enter image description here
but its not python and how should i get “g-recaptcha_response” value from cookies?
My example code:
import requests
url = 'https://example.com/php/getReCaptchaResponse.php'
response = requests.post(url)
< SOME CODE FOR EXTRACTING reCAPTCHA RESPONSE VALUE >
print(" g-recaptcha_response HERE ")
Thanks for everything…