recognize_text

recognize_text($text); - recognize captcha from text

It uses the following object fields :
  • $this->api_key - API key

    The function accepts parameters as input:

  • $text – text describing the captcha

    After testing, the function returns the result of its work to the script :
  • The result of recognition is a captcha string or a code string with an error response:
  • ERROR_KEY_DOES_NOT_EXIST - you used an invalid captcha key in the request
  • ERROR_WRONG_ID_FORMAT - invalid captcha ID, only numbers are accepted
  • ERROR_CAPTCHA_UNSOLVABLE - captcha could not be solved by 5 different employees

    PHP example:

    <?php $xhe_host = "127.0.0.1:7010";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
      $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> rucaptcha->".basename(__FILE__)."</font> <hr>";
     
    //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")."<br>";
     
    //2
    echo "2.Recognize captcha using rucaptcha.com service(text):";
    echo $rucaptcha->recognize_text(iconv("windows-1251", "utf-8//IGNORE", "is the ball round(yes/no)?"))." n";
     
    //3
    echo "3.Display information:";
    echo $rucaptcha->get_last_capcha_filename()."";
    echo $rucaptcha->get_last_capcha_id()."";
    echo iconv("utf-8", "windows-1251//IGNORE", $rucaptcha->get_last_capcha_result())."<br>";
     
    //4
    echo "4.Set the default recognition parameters:";
    echo $rucaptcha->set_default_params();
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
     
    xhe_host = "127.0.0.1:7013"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> rucaptcha.xxxxxxxxx </font> <hr>")
     
    # 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"), "<br>")
     
    # 2
    echo("2.Recognize captcha using rucaptcha.com service(text):")
    echo(rucaptcha.recognize_text("Is the ball round(yes/no)?"), "
    ")
     
    # 3
    echo("3.Display information:")
    echo(rucaptcha.get_last_capcha_filename(), "")
    echo(rucaptcha.get_last_capcha_id(), "")
    echo(rucaptcha.get_last_capcha_result(), "<br>")
     
    # 4
    echo("4.Set the default recognition parameters:")
    echo(rucaptcha.set_default_params())
     
    # end
    echo("<hr> <br>")
     
    # 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("<hr> <font color = blue> rucaptcha.recognize </font> <hr>");
     
    //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") + "<br>");
     
               //2
    echo("2.Recognize the captcha using the rucaptcha.com service(text):");
    echo(rucaptcha.recognize_text("is the ball round(yes/no)?") + " n");
     
    //3
    echo("3.Display information:");
    echo(rucaptcha.get_last_capcha_filename() + "");
    echo(rucaptcha.get_last_capcha_id() + "");
    echo(rucaptcha.get_last_capcha_result() + "<br>");
     
    //end
    echo("<hr> <br>");
     
    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("<hr> <font color = blue> rucaptcha.recognize_text </font> <hr>");
     
    //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") + "<br>");
     
    //step 2
    echo("2.Recognize captcha using the rucaptcha.com service(text):");
    echo(rucaptcha.recognize_text(iconv("windows-1251", "utf-8//IGNORE", "is the ball round(yes/no)?")) + " n");
     
    //step 3
    echo("3.Display information:");
    echo(rucaptcha.get_last_capcha_filename() + "");
    echo(rucaptcha.get_last_capcha_id() + "");
    echo(iconv("utf-8", "windows-1251//IGNORE", rucaptcha.get_last_capcha_result()) + "<br>");
     
    //step 4
    echo("4.Set the default recognition parameters:");
    echo(rucaptcha.set_default_params();
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();