====== ReportBadCaptcha ====== Sends report of incorrectly unraveled captcha in recognition service in accordance with API[[http://antigate.com/?action=api|AntiGate]]. ===== Syntax ===== function ReportBadCaptcha(aAddress: string; aKey: string; aCaptchaID: integer): string; ==== Parameters ==== * **//aAddress//** * //type:// string * //functions:// Address of API service recognition * **//aKey//** * //type:// string * //functions:// API key of service * **//aCaptchaID//** * //type:// integer * //functions:// captcha ID ==== Returned value ==== * //type:// string * //functions:// text of service response ===== Notes ===== ===== Examples ===== -//{$MODE PASCAL} var response := ReportBadCaptcha('antigate.com','MyKey', 1000); Log(response);