號(hào)碼標(biāo)記查詢接口文檔 點(diǎn)擊下載
號(hào)碼標(biāo)記查詢接入指南 點(diǎn)擊訪問
#接口類型:互億無線號(hào)碼標(biāo)記查詢接口
#賬戶注冊(cè):https://user.ihuyi.com/register.html
#注意事項(xiàng):
#DEMO僅作參考
#此為python3版本
import requests
import json
import time
import hashlib
#接口地址
url = "https://api.ihuyi.com/info_service/numbermark/Submit.json"
account = "APPID"
password = "APPKEY"
content = "02151691111"
_now = str(int(time.time()))
password_raw = account + password + _now
# print(password_raw)
password_md5 = hashlib.md5(password_raw.encode(encoding="UTF-8")).hexdigest()
# print(password)
#定義請(qǐng)求的數(shù)據(jù)
data = {
"account":account,
# "password":password,
"password":password_md5,
"content":content,
"time":_now,
}
#定義請(qǐng)求的頭部
headers = {
"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"
}
#發(fā)起請(qǐng)求
response = requests.post(url, headers=headers, data=data)
#打印結(jié)果
print(response.content.decode())
驗(yàn)證碼已發(fā)送到您的手機(jī),請(qǐng)查收!
輸入驗(yàn)證碼后,點(diǎn)擊“開通體驗(yàn)賬戶”按鈕可立即開通體驗(yàn)賬戶。