接口自動化爬蟲必備技能requests從入門到精通全網(wǎng)最細(xì)教程(附帶接口文檔)

## params請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/list
- method
get
- 請求數(shù)據(jù)
? ? - name,必填
? ? - age,必填
- headers
無
## form請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/form
- method
post
- 請求數(shù)據(jù)
? ? - name,必填
? ? - age,必填
- headers
{"Content-Type":"application/x-www-form-urlencoded"}
## json請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/json
- method
post
- 請求數(shù)據(jù)
? ? - name,必填
? ? - age,必填
- headers
{"Content-Type":"application/json"}
## file請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/upload
- method
post
- 請求數(shù)據(jù)
? ? - files,必填
- headers
{"Content-Type":"multipart/form-data"}
## form-data請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/data
- method
post
- 請求數(shù)據(jù)
? ? - name,必填
? ? - age,必填
- headers
{"Content-Type":"multipart/form-data"}
## other請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/other
- method
post
- 請求數(shù)據(jù)
隨便傳
- headers
無
## stream請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/download
- method
get
- 請求數(shù)據(jù)
無
- headers
無
## auth請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/auth
- method
post
- 請求數(shù)據(jù)
? ? - username,必填,值為admin
? ? - password,必填,值為123456
- headers
無
## proxies請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/proxies
- method
get
- 請求數(shù)據(jù)
無
- headers
無
## cookie1請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/login
- method
post
- 請求數(shù)據(jù)
? ? - username,必填,值為admin
? ? - password,必填,值為123456
- headers
{"Content-Type":"application/json"}
## cookie2請求練習(xí)
- url
http://119.45.233.102:6677/testgoup/test/info
- method
get
- headers
無