Initial page
All About Me's API
login
POST https://localhost:4000/login
Request Body
string
password
string
{ "name": "kimcoding",
"email": "kimcoding@gmail.com",
"phone": "010-0000-0000"
}{
"message": "Unauthorized"
}signUp
POST https://localhost:4000/signup
Request Body
string
password
string
name
string
phone
string
logout
GET https://localhost:4000/logout
googleLogin
POST https://localhost:4000/login/google
Headers
accessToken
string
githubLogin
POST https://localhost:4000/login/github
Headers
accessToken
string
userInfo
GET https://localhost:4000/user/:id
Headers
authorization
string
modifyUser
PUT https://localhost:4000/user/:id
Headers
accessToken
string
string
password
string
name
string
phone
string
deleteUser
DELETE https://localhost:4000/user/:id
Headers
accessToken
string
loadFavorite
GET https://localhost:4000/user/favorite/:id
Headers
accessToken
string
loadUserPost
GET https://localhost:4000/user/post/:id
Headers
accessToken
string
deleteFavorite
DELETE https://localhost:4000/user/favorite/:id
Headers
accessToken
string
testlist
GET https://localhost:4000/test
test
GET https://localhost:4000/test/:id
Query Parameters
id
number
saveFavorite
POST https://localhost:4000/favorite
Request Body
userId
number
selectId
number
testId
number
loadPost
GET https://localhost:4000/post
Headers
accessToken
string
addPost
POST https://localhost:4000/post
Headers
accessToken
string
Request Body
userId
number
content
string
deletePost
DELETE https://localhost:4000/post/:id
Headers
accessToken
string
Last updated
Was this helpful?