Как отправить смс через форму PHP?
У меня есть одна простая форма PHP для отправки SMS, я пытаюсь отправить SMS на один номер, но он дает мне сообщение об успехе "SMS отправлено..." вместе с ошибкой "Неверное имя пользователя / пароль".
Я вручную проверяю ссылку, помещая ее в браузер, она работает нормально, я получил SMS этим процессом....
Пожалуйста, помогите мне решить это!!!
<?php
if(isset($_POST['submit']))
{
$number=$_POST['numbertext'].$_POST['number'];
$message=$_POST['message'];
$var="http://sms.************.com/*****.asp?user=username&password=
password&sender=sender&sendercdma=**********&text=".$message."&PhoneNumber=".$number."&track=1";
echo $var;
$curl=curl_init('http://sms.************.com/*****.asp');
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$result= curl_exec($curl);
echo $result;
curl_close($curl);
die("SMS has sent.....");
}
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form method="post">
Number:<br/>
<input type="text" name="numbertext" />-<input type="text" name="number" />
<br/><br/>
<br/><br/>
Message:<br/>
<textarea name="message"></textarea>
<input type="submit" name="submit" value="Send"/>
</form>
</body>
</html>
3 ответа
Отправленные SMS Через API msg91, я все еще не ясно с вашими входами API.
$YourAuthKey="Your Key";
$mobiles="number";
$message="Transactional Message";
$country=91;
$senderid="XYZMSG";
$url="https://control.msg91.com/api/sendhttp.php?authkey=".$YourAuthKey."&mobiles=".$mobiles."&message=".$message."&sender=".$senderid."&route=4&country=91";
echo $url;
header("Location: $url");
Проверяя их API, вы должны сделать следующее:
$postData = array(
'authkey' => $authKey,
'mobiles' => $mobileNumber,
'message' => $message,
'sender' => $senderId,
'route' => $route
);
//API URL
$url="https://control.msg91.com/api/sendhttp.php";
// init the resource
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $postData
));
И определенно не передавайте свой URL следующим образом:
curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
$YourAuthKey="authkey";
$mobiles="mobile";
$message="demo";
$country=91;
$senderid="625552";// your sender id should be 6 digit
$url="http://********/api/*****.php?authkey=$YourAuthKey&mobiles=$mobiles&message=$message&sender=$senderid&route=4&country=$country";
// эхо $url;
$curl=curl_init('http://*******/api/*****.php');
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$result= curl_exec($curl);
echo $result;
curl_close($curl);
die("SMS has sent.....");
Вы можете отправлять SMS с помощью mvayoo api, сначала легко создать учетную запись на www.mvaayoo.com. Тогда вы получите ваше имя пользователя, пароль. Заполните эту информацию в следующем коде и отправьте SMS легко
<?php$ch = curl_init();
$user="enter your account email id here:enter your password here";
$receipientno="enter recivermobile number here";
$senderID="TEST SMS";
$msgtxt="this is test message, test";
curl_setopt($ch,CURLOPT_URL, "http://api.mVaayoo.com/mvaayooapi/MessageCompose");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,"user=$user&senderID=$senderID&receipientno=$receipientno&msgtxt=$msgtxt");
$buffer = curl_exec($ch);
if(empty ($buffer)){
echo " buffer is empty ";
}else{
echo $buffer;
}
curl_close($ch);
>
www.gajabwap.blogspot.in