Chinaunix首页 | 论坛 | 博客
  • 博客访问: 40004
  • 博文数量: 19
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 205
  • 用 户 组: 普通用户
  • 注册时间: 2018-01-23 15:20
文章分类

全部博文(19)

文章存档

2018年(19)

我的朋友

分类: Python/Ruby

2018-05-15 17:16:26

#!/usr/local/bin/python

#-*- coding:utf-8 -*-

# Author: jacky

# Time: 14-2-22 下午11:48

# Desc: 短信http接口的python代码调用示例

import httplib

import urllib

import json

#服务地址 

host = "intapi.253.com"

 

#端口号

port = 80

 

#版本号

version = "v1.1"

 

#查账户信息的URI

balance_get_uri = "/balance/json"

 

#智能匹配模版短信接口的URI

sms_send_uri = "/send/json"

 

#创蓝账号

account  = ""

 

#创蓝密码

password = ""

 

def get_user_balance():

    """

    取账户余额

    """

    params = {'account': account, 'password' : password}

    params=json.dumps(params)

  

    headers = {"Content-type": "application/json"}

    conn = httplib.HTTPConnection(host, port=port)

    conn.request('POST', balance_get_uri, params, headers)

    response = conn.getresponse()

    response_str = response.read()

    conn.close()

    return response_str

 

创蓝253云通讯平台---国际短信接口调用demo

 

def send_sms(text, phone):

    """

    能用接口发短信

    """

 

    params = {'account': account, 'password' : password, 'msg': urllib.quote(text), 'mobile':phone, 'report' : 'false'}

    params=json.dumps(params)

  

    headers = {"Content-type": "application/json"}

    conn = httplib.HTTPConnection(host, port=port, timeout=30)

    conn.request("POST", sms_send_uri, params, headers)

    response = conn.getresponse()

    response_str = response.read()

    conn.close()

    return response_str

 

if __name__ == '__main__':

    #手机号码,格式(区号+手机号码),例如:8615800000000,其中86为中国的区号

    phone = "8615800000000"

    text = "253云通讯】您的验证码是1234"

 

    #查账户余额

    print(get_user_balance())

 

    #调用智能匹配模版接口发短信

    print(send_sms(text, phone))

阅读(886) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~