此处使用数据聚合短信API
函数方法可以拿来直接使用
import requests
def sms_captcha(mobile, captcha):
url = "http://v.juhe.cn/sms/send"
params = {
"mobile": mobile, # mobile: 要发送的手机号
"tpl_id": "你tpl_id", # tpl_id: 申请的模板id(str))
"tpl_value": "#code#="+captcha, # tpl_value: 要发送的信息
"key": "你的key"
}
response = requests.get(url, params=params)
result = response.json()
if result['error_code'] == 0:
return True
else:
return False
- 需要安装
requests
:pip install requests
- 可以打印
print(response.json())
查看其输出