get_last_capcha_result

get_last_capcha_result(); - get the result of the last captcha recognition

After testing, the function returns the result of its work to the script :
  • Recognition result – the last recognition result (captcha or code string with an error response)

    PHP example: rucaptcha->".basename(__FILE__)."
    "; //API key $rucaptcha->api_key = ""; //1 echo "1.Let's go to the polygon:"; echo $browser->navigate("http://www.humanemulator.net/poligon/image.html")."
    "; //2 echo "2.Recognize captcha using rucaptcha.com service:"; echo $image->screenshot_by_src("tmp/1.jpg", "images/captcha", false).""; echo $rucaptcha->recognize_image($debug->get_cur_script_folder()."tmp \ 1.jpg")." n"; //3 echo "3.Display information:"; echo $rucaptcha->get_last_capcha_filename().""; echo $rucaptcha->get_last_capcha_id().""; echo $rucaptcha->get_last_capcha_result()."
    "; //end echo "

    "; //Quit $app->quit(); ?>
    Python example: # Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7010" from xweb_human_emulator import * # Start echo("
    rucaptcha.xxxxxxxxx
    ") # API key rucaptcha.api_key = "" # 1 echo("1.Let's go to the polygon:") echo(browser.navigate("http://www.humanemulator.net/poligon/image.html"), "
    ") # 2 echo("2.Recognize captcha using rucaptcha.com service:") echo(image.screenshot_by_src("tmp/1.jpg", "images/captcha", false), "") echo(rucaptcha.recognize_image(debug.get_cur_script_folder() + "tmp \ 1.jpg"), " ") # 3 echo("3.Display information:") echo(rucaptcha.get_last_capcha_filename(), "") echo(rucaptcha.get_last_capcha_id(), "") echo(rucaptcha.get_last_capcha_result(), "
    ") # end echo("

    ") # Quit app.quit()
    C# example: #region using using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using System.Threading; using XHE; using XHE.XHE_DOM; using XHE.XHE_System; using XHE.XHE_Window; using XHE.XHE_Web; #endregion class Program: XHEScript { static void Main(string [] args) { //init XHE server = "127.0.0.1:7010"; InitXHE(); //Start echo("
    rucaptcha.get_last_capcha_result
    "); //key string key = "38eccdf20e3f65d2fd98b6b76cc406f3"; //API key rucaptcha.api_key = "448b2d538fef6c236092492a947af85b"; //1 echo("1.Let's go to the polygon:"); echo(browser.navigate("http://www.humanemulator.net/poligon/image.html") + "
    "); //2 echo("2.Recognize a captcha using the rucaptcha.com service(as numbers):"); echo(image.screenshot_by_src("tmp/1.jpg", "images/captcha", 0) + ""); echo(rucaptcha.recognize(debug.get_cur_script_folder() + "tmp \ 1.jpg", rucaptcha.api_key, "http://www.rucaptcha.com", true, 5,120, false, false, true) + " n "); //3 echo("3.Display information:"); echo(rucaptcha.get_last_capcha_filename() + ""); echo(rucaptcha.get_last_capcha_id() + ""); echo(rucaptcha.get_last_capcha_result() + "
    "); //end echo("

    "); app.quit(); } }
    Java Script example: //connect the object to control the emulator, if not already connected xhe_host = "127.0.0.1:7010"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("
    rucaptcha.get_last_capcha_result
    "); //API key rucaptcha.api_key = ""); //1 step echo("1.Let's go to the polygon:"); echo(browser.navigate("http://www.humanemulator.net/poligon/image.html") + "
    "); //step 2 echo("2.Recognize a captcha using the rucaptcha.com service:"); echo(image.screenshot_by_src("tmp/1.jpg", "images/captcha", false) + ""); echo(rucaptcha.recognize_image(debug.get_cur_script_folder()."tmp \ 1.jpg") + " n"); //step 3 echo("3.Display information:"); echo(rucaptcha.get_last_capcha_filename() + ""); echo(rucaptcha.get_last_capcha_id() + ""); echo(rucaptcha.get_last_capcha_result() + "
    "); //end echo("

    "); //Quit app.quit();