python request 接口測試get和post請求
阿新 • • 發佈:2017-10-09
.post .get access username int 用戶 post請求 運行 開發
開發IDE:pycharm
python:2.7.10
get請求
# coding: UTF-8 #兼容中文字符,如果沒有這句,程序中有中文字符時,運行會報錯
import requests #引用request包
import json #引用json包
url = "https://XXXXXXX" #URL設定
headers={‘content-type‘: ‘XXXXXX‘, ‘UserName‘: ‘XXXXX‘,
‘AccessToken‘: ‘XXXXX‘ } #設置header
r = requests.get(url, headers=headers) #發送get請求
print ‘02用戶strip信息獲取:‘
print r.json() #以json格式顯示響應
post請求
# coding: UTF-8
import requests
import json
url = "https://XXXXXXXXXXX"
headers = {‘content-type‘: ‘XXXXX‘, ‘UserName‘: ‘XXXX‘,
‘AccessToken‘: ‘XXXXX‘ }
data = {‘weight‘: ‘XXXXXX‘, ‘Leight‘: ‘XXXXX‘} #設置body
r = requests.post(url, headers=headers, data=data)
print ‘03用戶strip配置信息設置:‘
print r.json()
python request 接口測試get和post請求