So I am not trying to bypass anything I just need to get the value returned by the request.
Example:
I go to a website.
Click a button.
Fill a RECAPTCHA
Once RECAPTCHA has been filled & verified it sends a request to an API with a payload & then the response returns a few values such as:
{"success":true,"data":{"signature":"SIG_K1_xxxxfp3w4EdhcCYqHwTntM19G7w4NCDt6ruTPistKPRow47cyeUiRMsc5YN9JMkqjtrfsk2Pf3nZkDY54rNWS5cyDhtE21y","nonce":1734981752}}
So I need to SOMEHOW grab the value of "signature" and "nonce" and again, I remind you, I AM NOT the one doing the FETCH request, the website/captcha is as soon as the captcha is validated. Is there anyway to do this?
PS: Before someone suggest that I do the FETCH request myself, I can't because it passes a "challenge" parameter in the payload which is unique to each RECAPTCHA and there's no way to find out its value.