get_code

get_code($wt_wait); - get activation code from SMS.

The function accepts parameters as input:

  • $wt_wait – wait *10 seconds.
    After testing, the function returns the result of its work to the script :
  • true – the operation was performed successfully
  • false – the operation was not completed

    The resulting code itself can be obtained from the cheapsms->codevariable. However, if your text message is not parsed correctly, use the cheapsms->answervariable for parsing.

    The cheapsms->answer variable can be:

    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> cheapsms->".basename(__FILE__)."</font> <hr>";
     
    //set the API key for the service
    $cheapsms->api_key = '3161df9b1fe1ccb8cfd7dA91db765de8';
     
    //get phone number
    if(!$cheapsms->get_phone_number('other_0'))
    {
        while($cheapsms->answer == "NO_NUMBERS")
        {
            $cheapsms->get_phone_number('other_0');
            sleep(10);
        }
     
        if(strpos($cheapsms->answer, 'ACCESS_NUMBER') === false)
        {
           echo("answer $cheapsms->servis $cheapsms->answer <br>");
           $app->quit();
        }
    }
     
    //sms sent
    $cheapsms->set_status(1);
    //received phone number
    echo $phone = trim($cheapsms->number);
    echo "<br>";
     
    /* here use of the number in the registration form
    after which an SMS is sent to the phone
    */
     
    //wait * 10 in seconds
    $wt_wait = 7;
    //get code from SMS
    if(!$cheapsms->get_code($wt_wait))
    {
        echo("ERROR: $cheapsms->answer could not get code from SMS");
     
       //inform the service that we release the number
        $cheapsms->set_status(8);
    }
    else//if necessary, correct the parsing of the SMS text, if the code is not correctly parsed from it
    {
       //inform the service that everything is ok
        $cheapsms->set_status();
       //code from sms
        echo trim($cheapsms->code).'<br>';
    }
     
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

     

    C# example:

     

    Java Script example: