首页 > 代码库 > learning API

learning API

增删改查:

post

delete

put

get

一般要先登录。用户登录,返回的 token 可用于后续请求。

在开发者模式下,token 是以 token?/login开头的请求。Request/Preview/token:"17c337ac-557a-f6be-be01-800064772e25"

token可设置为 global 的环境变量。然后把 token 写到 params(query string) 里面。key:token,value:{{Global_token}}

get一般在params 中写参数,如 token。

post 请求一般写到 body 里面。

formdata 用于表单类型(如登录时用户名,密码)。

一般选 raw+Json

例如:

body中写:

{
"gender":1,
"firstName":"Christine"
}

put 表示改

body中写:

{
"gender":2,
"firstName":"Byron"
}

 

learning API