Web Service SMS SOAP

Asked

Viewed 99 times

0

I have my own SMS sending code in PHP SOAP Web Service as you see below:

       <?php

    try {
    $webservice = new SoapClient("https://services.tvest.net.br:62003/sys/wsdl", array("trace" => 1, "login" => "blabla", "password" =>                                                               
     "blablabla"));
   } catch (Exception $e) {
   print_r($e);
  exit;
  }


   $webservice->enviarSMS("5522998318901", "teste");

     ?>

The question is: how I’m going to start an SMS confirmation login PHP from that code, I’m having difficulties !!!

  • what you mean by: "start a PHP of SMS Confirmation Login" ?

  • want to start creating an authenticator by sms, client puts the number of the mobile and goes a code for it and it authenticates in my base

  • What will this client need to put for the system to send the SMS? Only the mobile number? This number is already recorded somewhere?

  • only the cell phone number !!! and nothing else

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.