欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-04 19:43:22
如下所示: import json import http.client connection = http.client.httpsconnectio...

如下所示:

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())

以上这篇python3 http提交json参数并获取返回值的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。