当前位置:主页 > 软件编程 > Python代码 >

python3 http提交json参数并获取返回值的方法

时间:2020-12-08 23:27:44 | 栏目:Python代码 | 点击:

如下所示:

import json
import http.client
 
connection = http.client.HTTPSConnection('spd.aiopos.cn')
 
headers = {'Content-type': 'application/json'}
 
values = {
 'acct_pan':'6226011****83678',
 'acct_name':'张三',
 'cert_type':'01',
 'cert_id':'37293019****95',
 'phone_num':'1516××××02'
}
 
json_foo = json.dumps(values)
 
connection.request('POST', '/authen/verifi?access_token=e2011a', json_foo, headers)
 
response = connection.getresponse()
print(response.read().decode())

您可能感兴趣的文章:

相关文章