Home  >  Article  >  Backend Development  >  SMS API Interface Guide in PHP

SMS API Interface Guide in PHP

王林
王林Original
2023-05-21 08:24:221811browse

With the rapid development of the Internet and mobile communications, text messaging has become an indispensable part of people's lives and work. Various SMS API interfaces have also emerged, making it easier for developers to quickly integrate SMS sending functions into applications. As a popular server-side programming language, PHP also has a rich SMS API interface for developers to use. This article will introduce you to the SMS API interface guide in PHP, hoping to be helpful to your learning and development.

1. Alibaba Dayu SMS Interface

Alibaba Dayu is a mobile developer service platform under Alibaba, which provides a wealth of mobile development services and tools, including SMS interfaces. Alibaba Dayu SMS interface supports domestic and international SMS sending, SMS template management and other functions. Developers can use the PHP SDK to quickly integrate SMS sending functions through APIs.

Using the Alibaba Dayu SMS interface requires the following steps:

  1. Register an Alibaba Dayu account and create an application.
  2. Developers can download the PHP SDK from the Alibaba Dayu official website, and after unzipping, copy the four files TopClient.php, ResultSet.php, RequestCheckUtil.php and RequestCheckUtil.php in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
require_once 'TopClient.php';
require_once 'ResultSet.php';
require_once 'RequestCheckUtil.php';
require_once 'RequestCheckUtil.php';

// 创建一个TopClient实例
$c = new TopClient;
$c->appkey = '您的appkey';
$c->secretKey = '您的secretKey';
$c->format = 'json';

$req = new AlibabaAliqinFcSmsNumSendRequest;
$req->setExtend("");
$req->setSmsType("normal");
$req->setSmsFreeSignName("阿里大鱼");
$req->setSmsParam('{ "name":"用户" }');
$req->setRecNum("13000000000");
$req->setSmsTemplateCode("SMS_5943521");

$resp = $c->execute($req);

The above code creates a TopClient instance through the SDK, and then sets parameters such as appkey, secretKey, and format. AlibabaAliqinFcSmsNumSendRequest is an SMS interface request class. Use the set method to set request parameters, such as SMS signature, SMS parameters, mobile phone number, SMS template number, etc. Finally, use the execute method to send the SMS request, and the returned result contains information such as the SMS sending status.

2. Yunzhixun SMS Interface

Yunzhixun SMS interface is an SMS sending service provided by Shenzhen Yunzhixun Information Technology Co., Ltd. It supports SMS verification codes and marketing SMS. and various types of text messages such as voice verification codes are sent. Yunzhixun SMS interface uses mobile phone numbers as user verification methods and supports domestic and overseas SMS sending. Developers can use PHP SDK to quickly call interfaces through API.

Using the Yunzhixun SMS interface requires the following steps:

  1. Register a Yunzhixun account and create an application.
  2. Developers can download the PHP SDK from the Yunzhixun official website, and after unzipping, copy the SendTemplateSMS.php file in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
<?php
require_once 'SendTemplateSMS.php';
//主帐号
$accountSid= '您的主帐号';
//主帐号Token
$accountToken= '您的主账号Token';
//应用Id
$appId='您的应用ID';
//请求地址,格式如下,不需要写https://
$serverIP='app.cloopen.com';
//请求端口 
$serverPort='8883';
//REST版本号
$softVersion='2013-12-26';

$rest = new REST($serverIP,$serverPort,$softVersion);
$rest->setAccount($accountSid,$accountToken);
$rest->setAppId($appId);

$mobile = '13000000000';
$templateId = '1';
$param = '123456';

$result = $rest->sendTemplateSMS($mobile,array($param),$templateId);
if($result == NULL ) {
    echo "result error!";
    exit;
}
if($result->statusCode!=0) {
    echo "error code :" . $result->statusCode . "<br>";
    echo "error msg :" . $result->statusMsg . "<br>";
} else {
    echo "Sendind TemplateSMS success!<br/>";
    // 获取返回信息
    $smsmessage = $result->TemplateSMS;
    echo "dateCreated:".$smsmessage->dateCreated."<br/>";
    echo "smsMessageSid:".$smsmessage->smsMessageSid."<br/>";
}
?>

The above code creates a REST instance, and then sets the account, application ID, SMS template parameters and other information. Finally, use the sendTemplateSMS method to send an SMS request, and the returned result includes information such as the SMS sending status.

3. Ronglian Cloud Communication SMS Interface

Ronglian Cloud Communication SMS Interface is an SMS sending service provided by Beijing Ronglian Century Information Technology Co., Ltd., supporting verification codes and notification SMS. and marketing text messages and other types of text messages sent. Ronglian Cloud Communication SMS interface uses SMS templates as a way to send personalized SMS messages, and dynamic parameters can be set. Developers can use PHP SDK to quickly call interfaces through API.

Using the Ronglian Cloud Communication SMS interface requires the following steps:

  1. Register a Ronglian Cloud Communication account and create an application.
  2. Developers can download the PHP SDK from the official website of Ronglian Cloud Communications, and after decompression, copy the SendTemplateSMS.php and CCPRestSmsSDK.php files in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
<?php
//主帐号
$accountSid= '您的主帐号';
//主帐号Token
$accountToken= '您的主账号Token';
//应用Id
$appId='您的应用ID';
//请求地址,格式如下,不需要写https://
$serverIP='app.cloopen.com';
//请求端口 
$serverPort='8883';
//REST版本号
$softVersion='2013-12-26';

require_once 'SendTemplateSMS.php';
$rest = new CCPRestSmsSDK($serverIP,$serverPort,$softVersion);
$rest->setAccount($accountSid,$accountToken);
$rest->setAppId($appId);

$to = "13000000000";
$templateId = "1";
$datas = array("123456","5");
$result = $rest->sendTemplateSMS($to,$datas,$templateId);

if($result == NULL ) {
    echo "result error!";
    exit;
}
if($result->statusCode!=0) {
    echo "error code :" . $result->statusCode . "<br>";
    echo "error msg :" . $result->statusMsg . "<br>";
} else {
    echo "Sendind TemplateSMS success!<br/>";
    // 获取返回信息
    $datas = $result->TemplateSMS;
    foreach($datas as $key=>$value) {
        echo "$key:$value<br/>";
    }
}
?>

The above code creates a CCPRestSmsSDK instance and sets the account, application ID, SMS template parameters and other information. Finally, use the sendTemplateSMS method to send an SMS request, and the returned result includes information such as the SMS sending status.

4. Summary

This article introduces three commonly used SMS API interfaces in PHP, including Alibaba Dayu SMS interface, Yunzhixun SMS interface and Ronglian Cloud Communication SMS interface. These interfaces provide rich functions and flexible calling methods to meet different application scenarios and needs. Developers can choose the corresponding interface according to specific needs, or develop their own SMS sending function based on the API documentation. I hope this article will be helpful for PHP developers to learn and use the SMS API interface.

The above is the detailed content of SMS API Interface Guide in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn