『『需自动化项目源码\交流学习添加v:ct-xiaozhou

免费提供的。行业变迁,多个好友多点可能性。非机构』』


1 post请求

    通常要给一串json,字典类型的参数,举例:

def test1():

method ='post'

    url ='http://xxxxxxxxxxxxxxxxxxxx'

    body = {

"orderId":"1"

    }

headers = {

"user":"100"

    }

re = request(method=method, url=url, json=body, headers=headers)

print(re.content)# 打印返回内容

    print(re.status_code)# 打印返回码


2 get请求

可以把参数直接放在url后面,也可以通过传递字典格式参数params;该参数发起请求的时候会被自动加在接口请求后面:GET /api/************/detail/?orderId=1 HTTP/1.1

举例:

def test2():

method ='get'

    url ='http://***********************************'

    body = {

"orderId":"1"

    }

headers = {

"user":"100"

    }

re = request(method=method, url=url, params=body, headers=headers)

print(re.content)# 打印返回内容

    print(re.status_code)# 打印返回码


『『需自动化项目源码\交流学习添加v:ct-xiaozhou

免费提供的。行业变迁,多个好友多点可能性。非机构』』