互億無線 · 文檔中心

銀行卡四要素 - 代碼示例


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/Submit.json'

account = 'APPID'
password = 'APPKEY'
app = 'bank4' #固定值
name = '張三'
id_card_no = '123456789012345678'
mobile = '13600000000'
bank_card_no = '637556789'
_now = str(int(time.time()))
password_raw = account + password + app + name + id_card_no + mobile + bank_card_no +  _now
# print(password_raw)
password_md5 = hashlib.md5(password_raw.encode(encoding='UTF-8')).hexdigest()
# print(password)

#定義請求的數(shù)據(jù)
data = {
    'account':account,
    # 'password':password,
    'password':password_md5,
    'app':app,
    'name':name,
    'id_card_no':id_card_no,
    'mobile':mobile,
    'bank_card_no':bank_card_no,
    'time':_now,
}

#定義請求的頭部
headers = {
    "Content-type": "application/x-www-form-urlencoded",
    "Accept": "text/plain"
}

#發(fā)起請求
response = requests.post(url, headers=headers, data=data)

#打印結(jié)果
print(response.content.decode())

現(xiàn)在注冊,即享新用戶禮包!

在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

服務(wù)熱線(工作時間):

4008 808 898

業(yè)務(wù)咨詢(非工作時間):

售后咨詢(非工作時間):

驗證碼已發(fā)送到您的手機,請查收!

輸入驗證碼后,點擊“開通體驗賬戶”按鈕可立即開通體驗賬戶。

收不到短信驗證碼?
互億無線不提供接碼服務(wù),接碼用戶請勿點擊開通按鈕。
×