python对接手机消费区间验证接口DEMO示例
本文为您提供了python语言版本的手机消费区间验证对接DEMO示例
#接口类型:互亿无线实名认证接口
#账户注册:https://user.ihuyi.com/register.html
#注意事项:
#DEMO仅作参考
#此为python3版本
import requests
import json
import time
import hashlib
#接口地址
url = "https://api.ihuyi.com/idcard/operatorcon/Submit.json"
app = "operatorcon"
account = "APPID"
password = "APPKEY"
mobile = "13600000000"
_now = str(int(time.time()))
password_raw = account + password + app + mobile + _now
# print(password_raw)
password_md5 = hashlib.md5(password_raw.encode(encoding="UTF-8")).hexdigest()
# print(password)
#定义请求的数据
data = {
"account":account,
# "password":password,
"password":password_md5,
"mobile":mobile,
"time":_now,
}
#定义请求的头部
headers = {
"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"
}
#发起请求
response = requests.post(url, headers=headers, data=data)
#打印结果
print(response.content.decode())