set_status

set_status($status=6); - report the activation status.

the input Function accepts parameters:

  • $status – activation statuses:
    -1 - cancel activation
    1 - notify the number is ready (SMS sent to the number)
    3 - request another code (free of charge)
    6 - complete activation(if the status was "code received" - marks successful and completes
    8 - notify that the number is used and cancel activation [This status is canceled, valid unless you received an SMS to the number]

    After testing, the function returns the result of its work to the script :
  • true – the number is ready
  • false – the number is not ready

    You can view the service response in the simnet->answervariable.

    The simnet->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> simnet->".basename(__FILE__)."</font> <hr>";
     
    //set the service api key
    $simnet->api_key = '3161df9b1fe1ccb8cfd7dA91db765de8';
     
    //get phone number
    if(!$simnet->get_phone_number('ot'))
    {
        while($simnet->answer == "NO_NUMBERS")
        {
            $simnet->get_phone_number('ot');
            sleep(10);
        }
     
        if(strpos($simnet->answer, 'ACCESS_NUMBER') === false)
        {
           echo("answer $simnet->servis of the $simnet->answer <br>");
           $app->quit();
        }
    }
     
    //sms sent
    $simnet->set_status(1);
    //received phone number
    echo $phone = trim($simnet->number);
    echo "<br>";
     
    /* use the number here 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(!$simnet->get_code($wt_wait))
    {
        echo("ERROR: $simnet->answer could not get code from SMS");
     
       //inform the service that we release the number
        $simnet->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
        $simnet->set_status();
       //code from sms
        echo trim($simnet->code).'<br>';
    }
     
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

     

    C# example:

     

    Java Script example: