Python # 一个api接口调用POST请求

Posted Trouble Maker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python # 一个api接口调用POST请求相关的知识,希望对你有一定的参考价值。

###

import urllib2,json
url=http://xxx.xxx.com.cn/api/v1
data=json.dumps({organId:1})                #数据
headers={Content-Type:application/json}     #头部
request = urllib2.Request(url,data,headers)     #urllib2用一个Request对象来映射你提出的HTTP请求
print request
response = urllib2.urlopen(request)             #通过调用urlopen并传入Request对象,将返回一个相关请求response对象
print response
message = response.read()                       #这个应答对象如同一个文件对象,所以你可以在Response中调用.read()
print message

curl命令

curl -X POST -H "Content-Type:application/json" -d {"organId":"1"} http://xxx.xxx.com.cn/api/

###

urllib2另外一种用法:

import urllib2,json,urllib

response= urllib2.urlopen(http://www.ttlsa.com/)
html = response.read()
print html


req = urllib2.Request(http://www.ttlsa.com/)
response = urllib2.urlopen(req)
the_page = response.read()
print the_page
print urllib2.Request.get_method(req)

###

import urllib2
import urllib

values = {query : 捷豹}

url_values = urllib.urlencode(values)
url = https://www.sogou.com/web
full_url = url + ? + url_values
print full_url
req = urllib2.Request(full_url)
res = urllib2.urlopen(req)
page = res.read()
print page

###

以上是关于Python # 一个api接口调用POST请求的主要内容,如果未能解决你的问题,请参考以下文章

python调用接口,python接收post请求接口(附完整代码)

python学习笔记-调用接口

SpringCloud Feign调用服务接口时,GET请求变成POST请求报错 _

调用接口 (get,post,传cookie,入参json)

Https post接口自动化测试-python实现篇

哪些腾讯微博api接口可以用来请求生成一个随机用户列表?