创蓝253云通讯paas平台Python短信接口demo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创蓝253云通讯paas平台Python短信接口demo相关的知识,希望对你有一定的参考价值。

#!/usr/local/bin/python
#-- coding:utf-8 --

Author: jacky

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

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

import httplib
import urllib

#服务地址
host = "sms.253.com"

#端口号
port = 80

#版本号
version = "v1.1"

#查账户信息的URI
balance_get_uri = "/msg/balance"

#智能匹配模版短信接口的URI
sms_send_uri = "/msg/send"

#创蓝253账号
un = "xxxx"

#创蓝密码
pw = "xxxx"

def get_user_balance():
"""
取账户余额
"""
conn = httplib.HTTPConnection(host, port=port)
conn.request(‘GET‘, balance_get_uri + "?un=" + un + "&pw=" + pw)
response = conn.getresponse()
response_str = response.read()
conn.close()
return response_str

def send_sms(text, phone):
"""
能用接口发短信
"""
params = urllib.urlencode({‘un‘: un, ‘pw‘ : pw, ‘msg‘: text, ‘phone‘:phone, ‘rd‘ : ‘1‘})
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"}
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‘:

phone = "188xxxxxxxx"
text = "【创蓝253云通讯】您的验证码是1234"

#查账户余额
print(get_user_balance())

#调用智能匹配模版接口发短信
print(send_sms(text, phone))

以上是关于创蓝253云通讯paas平台Python短信接口demo的主要内容,如果未能解决你的问题,请参考以下文章

ASP创蓝253云通讯paas平台短信验证码接口调用demo

PYTHON创蓝253云通讯平台国际短信API接口DEMO

Python短信验证码平台查询账户余额demo---创蓝253云通讯平台案例

创蓝253云通讯平台---短信验证码接口说明

shell创蓝253云通讯平台国际短信API接口DEMO

ASP创蓝253云通讯平台国际短信API接口DEMO