在上一篇Python接口自動(dòng)化測(cè)試系列文章:Python接口自動(dòng)化之淺析requests模塊get請(qǐng)求,介紹了requests模塊、get請(qǐng)求及響應(yīng)結(jié)果詳解。接下來介紹requests模塊中的post請(qǐng)求的使用。
一、源碼解析
def post(url, data=None, json=None, **kwargs):
r"""Sends a POST request.
:param url: URL for the new :class:`Request` object.
:param data: (optional) Dictionary, list of tuples, bytes, or file-like
object to send in the body of the :class:`Request`.
:param json: (optional) json data to send in the body of the :class:`Request`.
:param \*\*kwargs: Optional arguments that ``request`` takes.
:return: :class:`Response Response>` object
:rtype: requests.Response
"""
return request('post', url, data=data, json=json, **kwargs)
post請(qǐng)求參數(shù)解析:
url:
請(qǐng)求的url,必填;
data:
選填,請(qǐng)求參數(shù);
json:
選填,請(qǐng)求參數(shù);
kwargs:
選填,可以傳入headers、cookies等。
二、data、json區(qū)別
小伙伴們看完可能有點(diǎn)懵逼,data和json有啥區(qū)別呀,什么時(shí)候傳入data,什么時(shí)候傳入json。
舉個(gè)栗子:
data = {
"name":"vivi"
}
print(type(data))
聰明的小伙伴立即搶答了,打印的是字典類型。
那如果想把字典轉(zhuǎn)換為json字符串呢,需要引用json模塊。
import json
data = {
"name":"vivi"
}
data = json.dumps(data)
print(type(data))
敲黑板:
- 不管json是str還是dict,如果不指定headers中的content-type,默認(rèn)為application/json;
- data為dict時(shí),如果不指定content-type,默認(rèn)為application/x-www-form-urlencoded,相當(dāng)于普通form表單提交的形式;
- data為str時(shí),如果不指定content-type,默認(rèn)為application/json。
重點(diǎn)來了,post請(qǐng)求參數(shù)到底是傳data還是json,這時(shí)候我們要看請(qǐng)求頭里的content-type類型(具體參照接口文檔,沒有接口文檔的抓包)。
如果請(qǐng)求頭中content-type為application/json, 為json形式,post請(qǐng)求使用json參數(shù)。
如果請(qǐng)求頭中content-type為application/x-www-form-urlencoded,為表單形式,post請(qǐng)求時(shí)使用使用data參數(shù)。
三、form形式發(fā)送post請(qǐng)求
當(dāng)前接口的請(qǐng)求類型為application/x-www-form-urlencoded。
# 導(dǎo)入requests模塊
import requests
# 請(qǐng)求url
url = "http://127.0.0.1:8000/user/login"
# 請(qǐng)求參數(shù)
payload = {
"mobilephone":"1530272****",
"pwd":"123456"
}
# form表單形式,參數(shù)用data
res = requests.post(url, data=payload)
print(res.text)
響應(yīng)結(jié)果為:
{
"status": 1,
"code": "10001",
"data": null,
"msg": "登錄成功"
}
四、json形式發(fā)送post請(qǐng)求
當(dāng)前接口的請(qǐng)求類型為application/json。
# 導(dǎo)入requests模塊
import requests
# 請(qǐng)求的url地址
url = 'http://127.0.0.1:8000/user/login/'
# 請(qǐng)求頭
headers = {"content-type":"application/json"}
# payload 為傳入的參數(shù)
payload = {"username":"vivi","password":"123456","remember_me":"false"}
# json形式,參數(shù)用json
res = requests.post(url,json=payload,headers=headers)
print(res.text)
響應(yīng)結(jié)果為:
無響應(yīng)???
問題來了,如果請(qǐng)求類型為application/json,我偏要傳入data參數(shù)呢?
先按我們正常思維走一波:
import requests
payload = {"username":"vivi","password":"123456","remember_me":"false"}
header = {"content-type":"application/json"}
url = 'http://127.0.0.1:8000/user/login/'
res = requests.post(url,data=payload,headers=header)
print(res.text)
響應(yīng)結(jié)果:請(qǐng)求錯(cuò)誤
{"code":400,"data":[],"message":"Input error"}
請(qǐng)求類型為application/json,如果想用data傳參,需要將字典類型數(shù)據(jù)轉(zhuǎn)換為json字符串
import requests
import json
payload = {"username":"vivi","password":"123456","remember_me":"false"}
header = {"content-type":"application/json"}
# 字典轉(zhuǎn)換為json串
data = json.dumps(payload)
url = 'http://127.0.0.1:8000/user/login/'
res = requests.post(url,data=data,headers=header)
print(res.text)
本文主要講解post源碼,data、json參數(shù)應(yīng)用場(chǎng)景及實(shí)戰(zhàn)。接口使用的本地服務(wù),如果大家想練手,可以使用公司項(xiàng)目或網(wǎng)上項(xiàng)目自行實(shí)戰(zhàn)。
本文主要講解post源碼,data、json參數(shù)應(yīng)用場(chǎng)景及實(shí)戰(zhàn)。接口使用的本地服務(wù),如果大家想練手,可以使用公司項(xiàng)目或網(wǎng)上項(xiàng)目自行實(shí)戰(zhàn),希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python函數(shù)式編程中itertools模塊詳解
- Python編程functools模塊創(chuàng)建修改的高階函數(shù)解析
- Python編程itertools模塊處理可迭代集合相關(guān)函數(shù)
- Python中re模塊常用方法總結(jié)分析
- 解析Python擴(kuò)展模塊的加速方案
- python中的zip模塊
- Python接口自動(dòng)化淺析logging日志原理及模塊操作流程
- 詳解Python模塊化--模塊(Modules)和包(Packages)
- Python接口自動(dòng)化之淺析requests模塊get請(qǐng)求
- 一篇文章帶你了解python標(biāo)準(zhǔn)庫--time模塊
- freeswitch開源通信 python模塊介紹