当前位置:   article > 正文

python实现发送和获取手机短信验证码_python获取手机短信验证码

python获取手机短信验证码

生成4位数字验证码
位数字验证码
defcreatePhoneCode(session):
chars=[‘0’,‘1’,‘2’,‘3’,‘4’,‘5’,‘6’,‘7’,‘8’,‘9’]
x=random.choice(chars),random.choice(chars),random.choice(chars),random.choice(chars)
verifyCode="".join(x)
session[“phoneVerifyCode”]={“time”:int(time.time()),“code”:verifyCode}
returnverifyCode
2、发送给外部短信接口(
、发送给外部短信接口(post方式)
方式)
defsendTelMsg(msg,phoneID):
SendTelMsgUrl=“http://www.810086.com.cn/jk.aspx”
params={“zh”:“china”,“mm”:“china@10086”,
“hm”:phoneID,“nr”:msg,“sms_type”:88}
postData=urllib.urlencode(params)
req=urllib2.Request(SendTelMsgUrl,postData)
req.add_header(‘Content-Type’,“application/x-www-form-urlencoded”)
respone=urllib2.urlopen(req)
res=respone.read()
returnres
其中session参数是djangourls.py后台方法以request.session传入
3、前端
、前端js
Ka

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/501354
推荐阅读
相关标签
  

闽ICP备14008679号