标签:开发 运行 imp 接口测试 char data head 引用 python
开发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()
标签:开发 运行 imp 接口测试 char data head 引用 python
原文地址:http://www.cnblogs.com/mghhzAnne/p/7642074.html