Does thinphp have the function of sending text messages?

WBOY
Release: 2016-08-25 10:37:12
Original
1097 people have browsed it

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>
Copy after login
Copy after login

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>
Copy after login
Copy after login

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>
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!