接口自动化爬虫必备技能requests从入门到精通全网最细教程(附带接口文档)

## params请求练习
- url
http://119.45.233.102:6677/testgoup/test/list
- method
get
- 请求数据
- name,必填
- age,必填
- headers
无
## form请求练习
- url
http://119.45.233.102:6677/testgoup/test/form
- method
post
- 请求数据
- name,必填
- age,必填
- headers
{"Content-Type":"application/x-www-form-urlencoded"}
## json请求练习
- url
http://119.45.233.102:6677/testgoup/test/json
- method
post
- 请求数据
- name,必填
- age,必填
- headers
{"Content-Type":"application/json"}
## file请求练习
- url
http://119.45.233.102:6677/testgoup/test/upload
- method
post
- 请求数据
- files,必填
- headers
{"Content-Type":"multipart/form-data"}
## form-data请求练习
- url
http://119.45.233.102:6677/testgoup/test/data
- method
post
- 请求数据
- name,必填
- age,必填
- headers
{"Content-Type":"multipart/form-data"}
## other请求练习
- url
http://119.45.233.102:6677/testgoup/test/other
- method
post
- 请求数据
随便传
- headers
无
## stream请求练习
- url
http://119.45.233.102:6677/testgoup/test/download
- method
get
- 请求数据
无
- headers
无
## auth请求练习
- url
http://119.45.233.102:6677/testgoup/test/auth
- method
post
- 请求数据
- username,必填,值为admin
- password,必填,值为123456
- headers
无
## proxies请求练习
- url
http://119.45.233.102:6677/testgoup/test/proxies
- method
get
- 请求数据
无
- headers
无
## cookie1请求练习
- url
http://119.45.233.102:6677/testgoup/test/login
- method
post
- 请求数据
- username,必填,值为admin
- password,必填,值为123456
- headers
{"Content-Type":"application/json"}
## cookie2请求练习
- url
http://119.45.233.102:6677/testgoup/test/info
- method
get
- headers
无