Home  >  Article  >  Backend Development  >  Does thinphp have the function of sending text messages?

Does thinphp have the function of sending text messages?

WBOY
WBOYOriginal
2016-08-25 10:37:121129browse

Use thinphp to create a text message sending function? The SMS sending interface is Alibaba’s largest interface!
The program is

<code>    $appkey = "2344130587";
    $secret = "8d91dcf2073ff6da30bddbc";
    
    require THINK_PATH.'Library/Org/Taobao/top/TopClient.php';
    require THINK_PATH.'Library/Org/Taobao/top/ResultSet.php';
    require THINK_PATH.'Library/Org/Taobao/top/RequestCheckUtil.php';
    require THINK_PATH.'Library/Org/Taobao/top/TopLogger.php';
    require THINK_PATH.'Library/Org/Taobao/top/request/AlibabaAliqinFcSmsNumSendRequest.php';
    include(THINK_PATH.'Library/Org/Taobao/TopSdk.php');
    
    $c = new \TopClient;
    $c->format = "json";
    $c->appkey = $appkey;
    $c->secretKey = $secret;
    $req = new \AlibabaAliqinFcSmsNumSendRequest;
    //$req->setExtend("123456");
    $req->setSmsType("normal");
    $req->setSmsFreeSignName("短信测试");
    $req->setSmsParam('{"code":"123456"}');
    $req->setRecNum("159143333346");
    $req->setSmsTemplateCode("SMS_8525079");
    $resp = $c->execute($req);
    dump($resp);
    

打印出来是

object(ResultSet)#8 (2) {["code"] => int(0) ["msg"] => string(28) "Could not resolve proxy: ddd"}
请教一下各位大神哪里错了?</code>

Reply content:

Use thinphp to create a text message sending function? The SMS sending interface is Alibaba’s largest interface!
The program is

<code>    $appkey = "2344130587";
    $secret = "8d91dcf2073ff6da30bddbc";
    
    require THINK_PATH.'Library/Org/Taobao/top/TopClient.php';
    require THINK_PATH.'Library/Org/Taobao/top/ResultSet.php';
    require THINK_PATH.'Library/Org/Taobao/top/RequestCheckUtil.php';
    require THINK_PATH.'Library/Org/Taobao/top/TopLogger.php';
    require THINK_PATH.'Library/Org/Taobao/top/request/AlibabaAliqinFcSmsNumSendRequest.php';
    include(THINK_PATH.'Library/Org/Taobao/TopSdk.php');
    
    $c = new \TopClient;
    $c->format = "json";
    $c->appkey = $appkey;
    $c->secretKey = $secret;
    $req = new \AlibabaAliqinFcSmsNumSendRequest;
    //$req->setExtend("123456");
    $req->setSmsType("normal");
    $req->setSmsFreeSignName("短信测试");
    $req->setSmsParam('{"code":"123456"}');
    $req->setRecNum("159143333346");
    $req->setSmsTemplateCode("SMS_8525079");
    $resp = $c->execute($req);
    dump($resp);
    

打印出来是

object(ResultSet)#8 (2) {["code"] => int(0) ["msg"] => string(28) "Could not resolve proxy: ddd"}
请教一下各位大神哪里错了?</code>

Looking at the prompt message, the proxy cannot be parsed: ddd. Can I send it directly using the demo provided on the official website without using TP?

<code>$appkey = "2344130587";
$secret = "8d91dcf2073ff6da30bddbc";</code>
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