【Postman】6 Postman 傳送post請求-Json格式
一、post請求說明
使用postman傳送一個post請求,在上文中測試流程中提到的4個要素:URL、請求方式、請求頭部資訊及body資料。
body中設定的請求引數,常見的有如下三種:
1、x-www-from-urlencoded格式
2、form data格式
3、Json格式
二、Json基礎
JSON(JavaScript Object Notation) 是一種輕量級的資料交換格式。在初始的專案開發中人們更傾向於使用xml來進行資料的傳輸,但當JSON出現後,開發者更傾向於使用JSON來進行資料的傳輸。
JSON的格式:
1、資料為 鍵/值 對。
2、資料由逗號分隔。
3、大括號儲存物件
4、方括號儲存陣列
{"students":[ {"name":"zhangsan", "address":"shandong"},{"name":"lisi","address":"tianjin"},{"name":"wangwu","address":"jiangsu"}]}
這就是一個JSON資料,裡面有一個students陣列,陣列中儲存了3個student物件,每個物件中包含了name和address兩個值,這樣的格式比xml要簡單的多,解析起來更加便捷快速。
三、使用postman傳送Json格式資料
1、下面我們以住邏輯網站的登入介面進行演示:%2F#nuxt
2、在Postman的Raw中設定JSON資料,在選擇完成之後,Postman會在header中自動填充Content-Type:application/json。
3、點選send傳送請求,在相應區可以檢視返回的響應結果:
4、說明
postman提供了多種raw型別,如text、html、json格式等,設定為與抓取的報文中Content-type型別對應的引數格式即可,直接按請求體的格式來進行內容傳送。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69996644/viewspace-2773730/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Postman傳送Post請求Postman
- postman(二):使用postman傳送get or post請求Postman
- 使用Postman傳送POST請求的指南Postman
- Postman傳送請求引數是Map格式的請求Postman
- 使用postman模擬登陸post請求方法Postman
- jmeter之傳送json資料的post請求JMeterJSON
- Java傳送Post請求Java
- python傳送HTTP POST請求PythonHTTP
- java傳送GET和post請求Java
- linux用curl傳送post請求Linux
- postman請求介面上傳檔案的設定Postman
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- httprequest- post- get -傳送請求HTTP
- file_get_contents傳送post請求
- 以Raw的方式傳送POST請求
- 用postman測試get/post匯出excel格式PostmanExcel
- 『政善治』Postman工具 — 7、Postman中儲存請求(Collections集合)Postman
- curl 傳送 POST 請求的四種方式
- 如何使用 Postman 傳送 SAP OData Batch 請求到 ABAP 後臺伺服器試讀版PostmanBAT伺服器
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,json,xml,txt資料JavaHTTPclient協議JSONXML
- 複製瀏覽器請求到Postman瀏覽器Postman
- cURL實現傳送Get和Post請求(PHP)PHP
- Postman 使用 Get 請求 URL 傳參中文亂碼的問題Postman
- swagger測試的時候,post請求引數的格式不是json格式SwaggerJSON
- axios傳送post請求,request.getParamter接收不到iOS
- 利用post請求傳送內容進行爬蟲爬蟲
- python+pytest介面自動化傳送post請求Python
- POSTMAN HTTP請求的四種方式區別PostmanHTTP
- scrapy-redis原始碼解讀之傳送POST請求Redis原始碼
- Java用HttpClient3傳送http/https協議get/post請求,傳送map,jsoJavaHTTPclient協議JS
- postman和SAP UI5應用傳送同樣的HTTP請求,為何前者成功,後者失敗?PostmanUIHTTP
- Vue中通過Axios向SpringBoot傳送get和post請求VueiOSSpring Boot
- Golang:使用go-resty/resty傳送http請求get和postGolangRESTHTTP
- 『動善時』JMeter基礎 — 14、使用JMeter傳送Post請求JMeter
- MAC 下使用Postman設定Cookie來發起請求MacPostmanCookie
- postman 請求引數和 Spring Boot Controller 接受引數PostmanSpring BootController
- Postman抓包瀏覽器請求--傻瓜式操作Postman瀏覽器
- C#模擬HTTP請求Post JSONC#HTTPJSON