短信平台接口调用方法参考

Posted 菊丸太

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了短信平台接口调用方法参考相关的知识,希望对你有一定的参考价值。

http请求:
<?php $urlsend="http://xxx.com/api/MsgSend.asmx/sendMes"; $token=array("userCode"=>"用户名","userPass"=>"密码","DesNo"=>"手机号","Msg"=>"短信内容【签名】","Channel"=>"通道号"); echo http($urlsend,$token,"GET"); //get请求 echo http($urlsend,$token,"POST"); //post请求 function http($url,$param,$action="GET"){ $ch=curl_init(); $config=array(CURLOPT_RETURNTRANSFER=>true,CURLOPT_URL=>$url); if($action=="POST"){ $config[CURLOPT_POST]=true; } $config[CURLOPT_POSTFIELDS]=http_build_query($param); curl_setopt_array($ch,$config); $result=curl_exec($ch); curl_close($ch); return $result; } ?>
webService请求:
<?php
    //此处仅示例发送短信,其他可类推
    header("Content-type: text/html; charset=utf-8");
    $client = new SoapClient("http://xxx.com/api/MsgSend.asmx?WSDL");
    $param = array("userCode"=>"用户名","userPass"=>"密码","DesNo"=>"手机号","Msg"=>"短信内容【签名】","Channel"=>"通道号");
    $p = $client->sendMes($param);
    print_r($p);
    ?>

以上是关于短信平台接口调用方法参考的主要内容,如果未能解决你的问题,请参考以下文章

短信平台接口调用方法参考

短信平台接口调用方法参考

片段 getActivity() 与接口回调?

Python如何调用别人写好的脚本

尝试在空对象引用上调用接口方法“____”[重复]

短信验证码接口开发代码