You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
864 B
55 lines
864 B
3 years ago
|
# @tall = {{url}}/tall/v1.0
|
||
|
@tall = https://www.tall.wiki/gateway/tall/v1.0
|
||
|
@greenvalley = http://www.sxwikionline.com/gateway/greenvalley
|
||
|
@type = content-type: application/json;charset=utf-8
|
||
|
|
||
|
### login
|
||
|
|
||
|
# @name login
|
||
|
POST {{tall}}/users/signin
|
||
|
{{type}}
|
||
|
|
||
|
{
|
||
|
"client": 1,
|
||
|
"type": 3,
|
||
|
"data": {
|
||
|
"identifier": "whj",
|
||
|
"credential": "123456"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
### send code
|
||
|
|
||
|
GET {{tall}}/users/smscode?phone=16603418748
|
||
|
|
||
|
|
||
|
### phone login
|
||
|
|
||
|
# @name phonelogin
|
||
|
POST {{tall}}/users/signin
|
||
|
{{type}}
|
||
|
|
||
|
{
|
||
|
"client": 1,
|
||
|
"type": 1,
|
||
|
"data": {
|
||
|
"identifier": "16603418748",
|
||
|
"credential": "1111"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
### 根据团队id查看研发团队相关信息
|
||
|
|
||
|
POST {{greenvalley}}/business/frontSearchCompany
|
||
|
{{type}}
|
||
|
Authorization: Bearer {{login.response.body.$.data.token}}
|
||
|
|
||
|
{
|
||
|
"param": {
|
||
|
"pageNum": 1,
|
||
|
"pageSize": 5,
|
||
|
"type": 2,
|
||
|
"typeOfPlatform": 2,
|
||
|
}
|
||
|
}
|