gimme4free
Elite Member
- Oct 22, 2008
- 1,935
- 1,989
My usual way of getting the images from Recaptcha is by:
Now I have come across a site that uses api-secure.recaptcha.net and the same procedure doesn't work with the new URL yet the same browser actions are made & I cannot figure out for the life of me how to get the correct image to post onto Decaptcher.
Anybody successfully getting the correct data + images from Recaptcha within PHP / Non JS environment?
PHP:
$challenge = $site_recaptcha_key."&ajax=1&xcachestop=".$cachestop."&".$extra_challenge_params;
$challenge_url = "http://api.recaptcha.net/challenge?k=".$challenge;
$challenge_field = get_string_between($content,"challenge : '","'");
$image_url = "http://api.recaptcha.net/image?c=".$challenge_field;
Now I have come across a site that uses api-secure.recaptcha.net and the same procedure doesn't work with the new URL yet the same browser actions are made & I cannot figure out for the life of me how to get the correct image to post onto Decaptcher.
Anybody successfully getting the correct data + images from Recaptcha within PHP / Non JS environment?
Last edited: