HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
❤️‍🔥
화랑팀
/
🥀
화면 기획 및 API 기획
/
💡
팔로우
💡

팔로우

 

1. 특정 사용자 팔로우[POST]

🌷
/follow/create
Request
{ header: { Authorization: 'bearer JWT token' }, body: { userId: String } }
Response
{ // Follow Object "_id": String, "user": String, // 사용자 id "follower": String, // 사용자 id "createdAt": String, "updatedAt": String }

2. 특정 사용자 언팔로우[DELETE]

🌷
/follow/delete
Request
{ header: { Authorization: 'bearer JWT token' }, body: { id: String } }
Response
{ // Follow Object "_id": String, "user": String, // 사용자 id "follower": String, // 사용자 id "createdAt": String, "updatedAt": String }