AWEBER and captcha integration
I have a client that wants captcha integrated into a form that po开发者_StackOverflow社区sts information to AWABER. It uses his aweber account to collect subscribers. So I have read here http://www.devgarbage.in/2011/01/25/auto-submit-to-aweber/ that AJAX calls to AWEBER can't be made since AWEBER strictly wants the user to press the button (fair enough) and I would have made a script that validates the captcha field locally with PHP and then, upon success, to post the form to aweber... So, just want to check if there are any other solutions to this problem.
Thanks.
You can't send requests across domains without controlling both sides, that is why ajax wont work. You could send it from your server, but they will likely catch on after every customer who gets added comes from the same IP address. You can however automatically submit the form with javascript as if they clicked it, after verifying the CAPTCHA was typed correctly.
精彩评论