用Python - Requests给项目加个短信验证码注册登录,只花了3分钟

最近开发一个项目,需要用到短信验证码作为注册登录,找了一个各大云市场的短信服务商的接口接入,代码如下,需要的可拿走:
`import requests

url = "https://vip.veesing.com/smsApi/verifyCode"

payload = 'appId=41KYR0EB&appKey=IIWCKKSR7NOQ&phone=1561894**&templateId=1043&variables=1234'
headers = {
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8'
}

response = requests.request("POST", url, headers=headers, data = payload)

print(response.text.encode('utf8'))
`
提醒一下:别忘了限制一个号码一天只能请求三次作为限制。
Python - Requests.py和文档说明下载

你可能感兴趣的:(python,安全,https,http)