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: