成功登录后,将返回一个JWT令牌,该令牌可用于发送经过身份验证的请求。
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/json
{
"email": "string",
"password": "string"
}
Request Code Samples
curl --location 'https://apifoxmock.com/m1/4532246-4179931-default/store/auth/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email": "string",
"password": "string"
}'
Responses
application/json
{
"access_token": "string"
}
Modified at 2024-12-13 03:41:57