{
"name": "用户名字",
"email": "13331@qq.com",
"intro": "用户简介呀"
}
curl --location --request PATCH 'http://api-toutiao-web.itheima.net/mp/v1_0/user/profile' \
--header 'Authorization: {{HM_ACCESS_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "用户名字",
"email": "13331@qq.com",
"intro": "用户简介呀"
}'{
"message": "OK",
"data": {
"id": 1,
"name": "用户名字",
"intro": "用户简介呀",
"email": "13331@qq.com"
}
}