发送短信

短信发送接口,支持自定义签名,支持移动、联通、电信.
接口编号: 504接口名称: 短信服务连接应用: 1739个
应用编号: 104001应用标识: sms.send服务商: NowAPI

说明


说明:
短信发送支持自定义签名,支持全国移动、联通、电信号码,超时1-120秒,使用三网106短信网关,欢迎测试.
短信每67个字计费一条,支持长短信发送,建议不超过200字.
因短信业务比较特殊,使用前请联系我司客服。 [联系我们]
--
禁止发送的内容:
1.不支持金融类任何内容的验证码、通知、营销内容.
2.邀请类短信,私人短信.
3.金融理财、贷款投标、地产促销、教育推广、医疗推介、移民宣传等敏感行业短信一律不得发送.
4.提醒还款、逾期催款、催付类短信.
以上所有短信类型一律不得发送。如进行违规发送,账户立即封停,余额不予退还!

调用方式

Get/Post

请求url

 HTTP: http://api.k780.com
HTTPS: https://sapi.k780.com

请求参数

参数 类型 是否必须 备注
tplId number 模板ID,可进入用户中心-短信模板 编辑
tplParam string 替换参数,带入前先urlencode()
比如模板: 验证码{code}【诺派】
{code}=123456,那么tplParam参数urlencode编码后就是 tplParam=code%3D123456
再比如模板: {user}验证码{code}【诺派】
{user}=admin,{code}=123456,那么tplParam参数urlencode编码后就是 tplParam=user%3Dadmin%26code%3D123456
phone string 手机号码,例:13800138000
appkey string 使用API的唯一凭证 获取
sign string md5后的32位密文,登陆用. 获取
format {json|xml} 返回数据格式
jsoncallback string js跨域使用jsonp时可使用此参数

Json请求示例

http://api.k780.com/?app=sms.send&tplId=你创建的模板ID&tplParam=替换参数&phone=手机号码&appkey=APPKEY&sign=SIGN&format=json

Json返回示例

1. 成功
{
    "success":"1",
    "result":{
        "status":"OK",
        "phone":"13800138000",
        "qty":"1"/*扣费条数,每条短信按67个字发送,最多不能超过200个字 */
    }
}

2.系统级别错误
{
    "success":"0",
    "msgid":"...",
    "msg":"..."
}

示例代码

<?php
header("Content-Type:text/html;charset=UTF-8");
function nowapiRequest($postData,&$errMsg=''){
    $apiUrl     = 'https://sapi.k780.com/';
    $useContext = stream_context_create(array(
        'http' => array(
            'method'  => 'POST',
            'header'  => 'Content-type:application/x-www-form-urlencoded',
            'content' => http_build_query($postData)
        )
    ));
    if(!$resData=file_get_contents($apiUrl,false,$useContext)){
        $errMsg = 'ERR_CONNECT';
        return false;
    }
    if(!$arrData=json_decode($resData,true)){
        $errMsg = 'ERR_DECODE';
        return false;
    }
    if($arrData['success']!=1){
        $errMsg = $arrData['msgid'].' '.$arrData['msg'];
        return false;
    }
    return $arrData['result'];
}

$postData['app'] = 'sms.send';
$postData['tplId'] = '你创建的模板ID';
$postData['tplParam'] = '替换参数';
$postData['phone'] = '手机号码';
$postData['appkey'] = '10003';//替换成自己的appkey
$postData['sign'] = 'b59bc3ef6191eb9f747dd4e83c99f2a4';//替换成自己的sign
$postData['format'] = 'json';
$result = nowapiRequest($postData,$errMsg);
print_r($errMsg);
print_r($result);

#python
import json,urllib
from urllib import urlencode

url = 'http://api.k780.com'
params = {
  'app' : 'sms.send',
  'tplId' : '你创建的模板ID',
  'tplParam' : '替换参数',
  'phone' : '手机号码',
  'appkey' : 'APPKEY',
  'sign' : 'SIGN',
  'format' : 'json',
}
params = urlencode(params)

f = urllib.urlopen('%s?%s' % (url, params))
nowapi_call = f.read()
#print content
a_result = json.loads(nowapi_call)
if a_result:
  if a_result['success'] != '0':
    print a_result['result'];
  else:
    print a_result['msgid']+' '+a_result['msg']
else:
  print 'Request nowapi fail.';

import java.net.*;
import java.io.*;

public class test{
    public static void main(String args[]) throws Exception {
        URL u=new URL("http://api.k780.com/?app=sms.send&tplId=你创建的模板ID&tplParam=替换参数&phone=手机号码&appkey=APPKEY&sign=SIGN&format=json");
        InputStream in=u.openStream();
        ByteArrayOutputStream out=new ByteArrayOutputStream();
        try {
            byte buf[]=new byte[1024];
            int read = 0;
            while ((read = in.read(buf)) > 0) {
                out.write(buf, 0, read);
            }
        }  finally {
            if (in != null) {
                in.close();
            }
        }
        byte b[]=out.toByteArray( );
        System.out.println(new String(b,"utf-8"));
    }
}

curl "http://api.k780.com/?app=sms.send&tplId=你创建的模板ID&tplParam=替换参数&phone=手机号码&appkey=10003&sign=b59bc3ef6191eb9f747dd4e83c99f2a4&format=json"

流量包套餐说明:

买多少用多少,多买有优惠,10元起买,适合大多数应用场景.

规格套餐名称价格描述
103流量包 3996 次300 元
104流量包 8325 次600 元
105流量包 14985 次1000 元
106流量包 46620 次3000 元
107流量包 83250 次5000 元
108流量包 172050 次10000 元
立即开通

客户服务

客服QQ: 1486133340 
QQ群8: 204490433

客服微信:

数据定制

定制接口、定制数据格式、采集等;联系请提供数据样式范本。1486133340 

意见反馈