基於聚合資料的簡訊API介面呼叫範例-Python版

王林
發布: 2024-04-03 13:28:11
轉載
728 人瀏覽過

基於聚合資料的簡訊API介面呼叫範例-Python版

一、申請介面

透過https://www.juhe.cn/docs/api/id/54自助申請開通簡訊API,取得介面請求Key。 (目前介面暫只支援企業類別使用者使用)
申請後,在個人中心提交簡訊模板,聚合官方已經提供了多個常用模板,可以快速申請使用。

二、python程式碼範例

官方介面文件請參考:<strong class="keylink">Http</strong>s://www.juhe.cn/docs/api/id/54

#!/usr/bin/Python
# -*- coding: utf-8 -*-

import urllib, urllib2, sys, JSON

reload(sys)
sys.setdefaultencoding('utf-8')

url = 'http://v.juhe.cn/sms/send'

params = {
"mobile": "13429667914",# 接收短信的用户手机号码
"tpl_id": "12341234",# 您申请的短信模板ID,根据实际情况修改
"tpl_value": "#code#=1235231",# 您设置的模板变量,根据实际情况修改,如无变量可留空
"key": "您申请的ApiKey",# 您申请的短信API接口请求Key
}
querys = urllib.urlencode(params)

request = urllib2.Request(url, data=querys)
response = urllib2.urlopen(request)
content = response.read()
if (content):
try:
result = json.loads(content)
error_code = result['error_code']
if (error_code == 0):
message_id = result['result']['sid']
print("请求成功,短信ID:%s" % message_id)
else:
print("请求失败:%s %s" % (result['error_code'], result['reason']))
except Exception as e:
print("解析结果异常:%s" % e)
else:
# 可能网络异常等问题,无法获取返回内容,请求异常
print("请求异常")

登入後複製

以上是基於聚合資料的簡訊API介面呼叫範例-Python版的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:lsjlt.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板