{"info":{"_postman_id":"f30b0e5d-99ae-4bdf-810d-ac0d92643809","name":"뉴스피드 API","description":"<html><head></head><body><h3 id=\"📰-simple-sns-team-spring-5기---14조\">📰 simple-sns (Team: Spring 5기 - 14조)</h3>\n<h4 id=\"간단한-뉴스피드-api를-구현합니다\">간단한 뉴스피드 API를 구현합니다.</h4>\n<ul>\n<li><p>유저 프로필 관리</p>\n</li>\n<li><p>뉴스피드 게시글 관리</p>\n</li>\n<li><p>댓글</p>\n</li>\n<li><p>좋아요</p>\n</li>\n<li><p>친구관리</p>\n</li>\n</ul>\n<p>👥 Member: 김한나, 노현수, 박은지, 유정현, 최유리</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"41322145","collectionId":"f30b0e5d-99ae-4bdf-810d-ac0d92643809","publishedId":"2sAYXFjdCu","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-02-18T12:33:39.000Z"},"item":[{"name":"유저","item":[{"name":"유저 생성(회원가입)","id":"f05ed7ae-9f55-484c-a20e-a901d8ed79b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"c@c.com\",\n    \"name\": \"유저3\",\n    \"birthdate\": \"2000-03-03\",\n    \"password\": \"33333\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/users/signup","urlObject":{"protocol":"http","port":"8080","path":["users","signup"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"f05ed7ae-9f55-484c-a20e-a901d8ed79b5"},{"name":"전체 유저 목록 조회","id":"cda89b4d-c4cf-4be7-ae7c-d71cf91739fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/users","urlObject":{"protocol":"http","port":"8080","path":["users"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"cda89b4d-c4cf-4be7-ae7c-d71cf91739fc"},{"name":"특정 유저 프로필 조회","id":"a74c08a4-5858-404a-8764-b774f94edce2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:8080/users/1","urlObject":{"protocol":"http","port":"8080","path":["users","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"a74c08a4-5858-404a-8764-b774f94edce2"},{"name":"특정 유저 프로필 수정","id":"e4708e15-d4f4-487c-938f-ce2150939f04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"password\": \"1111\",\n    \"birthdate\": \"2000-01-02\",\n    \"image\": \"test\",\n    \"mbti\": \"ENFP\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/users/1","urlObject":{"protocol":"http","port":"8080","path":["users","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4708e15-d4f4-487c-938f-ce2150939f04"},{"name":"특정 유저 비밀번호 수정","id":"e653215d-a09d-4faa-89c5-a6bd6f97f4e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"currentPassword\": \"2222\",\n    \"newPassword\": \"1234\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/users/2/password","urlObject":{"protocol":"http","port":"8080","path":["users","2","password"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e653215d-a09d-4faa-89c5-a6bd6f97f4e4"},{"name":"유저 삭제(회원탈퇴)","id":"7b6c1c0a-7dee-4c84-944c-f8d974fefa5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"d@d.com\",\n    \"password\": \"4444\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/users","urlObject":{"protocol":"http","port":"8080","path":["users"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b6c1c0a-7dee-4c84-944c-f8d974fefa5a"}],"id":"c7f26a58-0518-4736-af6c-bb2d9827df56","description":"<h3 id=\"🧑-프로필-관리\">🧑 프로필 관리</h3>\n<ul>\n<li><p>프로필 조회 기능</p>\n</li>\n<li><p>프로필 수정 기능</p>\n<ul>\n<li><p>프로필 정보 수정</p>\n</li>\n<li><p>비밀번호 수정</p>\n</li>\n</ul>\n</li>\n<li><p>회원가입, 회원탈퇴</p>\n</li>\n</ul>\n","_postman_id":"c7f26a58-0518-4736-af6c-bb2d9827df56"},{"name":"인증","item":[{"name":"로그인","id":"c8bb5f8c-c272-4af5-99ca-7162cd647843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"a@a.com\",\n    \"password\": \"11111\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/login","urlObject":{"protocol":"http","port":"8080","path":["login"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8bb5f8c-c272-4af5-99ca-7162cd647843"},{"name":"로그아웃","id":"3770121b-1c3e-459b-baef-f89d02a00e6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/logout","urlObject":{"protocol":"http","port":"8080","path":["logout"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"3770121b-1c3e-459b-baef-f89d02a00e6c"}],"id":"6ce1384e-a8da-4c2e-a50e-07156a7f4c6c","description":"<h3 id=\"🔐-사용자-인증\">🔐 사용자 인증</h3>\n<ul>\n<li><p>로그인</p>\n</li>\n<li><p>로그아웃</p>\n</li>\n</ul>\n","_postman_id":"6ce1384e-a8da-4c2e-a50e-07156a7f4c6c"},{"name":"게시글","item":[{"name":"게시글 등록","id":"e69b462e-2faa-46d7-8404-87cab462b890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"3\",\n    \"content\": \"내용2\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts","urlObject":{"protocol":"http","port":"8080","path":["posts"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e69b462e-2faa-46d7-8404-87cab462b890"},{"name":"게시글 조회","id":"00b4a42d-cadd-4d68-a2fe-921378030729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts","urlObject":{"protocol":"http","port":"8080","path":["posts"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"00b4a42d-cadd-4d68-a2fe-921378030729"},{"name":"특정 게시글 조회","id":"9428ff76-0c06-44e4-8234-9ef16a79f3dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts/1","urlObject":{"protocol":"http","port":"8080","path":["posts","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"9428ff76-0c06-44e4-8234-9ef16a79f3dd"},{"name":"게시글 수정","id":"1a4755a3-15a6-4915-9016-99fd25caac4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"제목수정1\",\n    \"content\": \"내용수정1\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts/1","urlObject":{"protocol":"http","port":"8080","path":["posts","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a4755a3-15a6-4915-9016-99fd25caac4d"},{"name":"게시글 삭제","id":"6eb6da68-69ba-4ec8-a2ac-82c0d3fdf5ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"제목수정1\",\n    \"content\": \"내용수정1\",\n    \"userId\": 3\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts/1","urlObject":{"protocol":"http","port":"8080","path":["posts","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"6eb6da68-69ba-4ec8-a2ac-82c0d3fdf5ba"}],"id":"520fe052-81aa-4321-90b2-833fad7e17ca","description":"<h3 id=\"📰-뉴스피드-게시물-관리\">📰 뉴스피드 게시물 관리</h3>\n<ul>\n<li><p>게시물 작성, 수정, 삭제</p>\n</li>\n<li><p>뉴스피드 조회 기능</p>\n</li>\n</ul>\n","_postman_id":"520fe052-81aa-4321-90b2-833fad7e17ca"},{"name":"댓글","item":[{"name":"댓글 작성","id":"842dbc82-3f09-40bf-a370-ab829260946a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"댓글1\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts/1/comments","urlObject":{"protocol":"http","port":"8080","path":["posts","1","comments"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"842dbc82-3f09-40bf-a370-ab829260946a"},{"name":"댓글 조회","id":"a863fb12-39b1-4a27-91b1-2dc3e8452bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"댓글3\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/posts/1/comments","urlObject":{"protocol":"http","port":"8080","path":["posts","1","comments"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"a863fb12-39b1-4a27-91b1-2dc3e8452bad"},{"name":"특정 댓글 조회","id":"3a8ba9ae-ed6c-4a6d-9fd7-377394668977","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"댓글3\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/comments/2","urlObject":{"protocol":"http","port":"8080","path":["comments","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a8ba9ae-ed6c-4a6d-9fd7-377394668977"},{"name":"댓글 수정","id":"cd689977-67a9-4595-8d7a-bbd6b30c1b88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"content\": \"댓글수정1\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/comments/2","urlObject":{"protocol":"http","port":"8080","path":["comments","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd689977-67a9-4595-8d7a-bbd6b30c1b88"},{"name":"댓글 삭제","id":"e1332d90-7bc3-45fc-9a81-7aa0852ef866","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/comments/2","urlObject":{"protocol":"http","port":"8080","path":["comments","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1332d90-7bc3-45fc-9a81-7aa0852ef866"}],"id":"6f093ba2-2951-41ae-b1e4-75b94f3617e7","description":"<h3 id=\"💬-댓글\">💬 댓글</h3>\n<ul>\n<li>댓글 작성, 조회, 수정, 삭제</li>\n</ul>\n","_postman_id":"6f093ba2-2951-41ae-b1e4-75b94f3617e7"},{"name":"친구","item":[{"name":"친구 등록","id":"a0ec52d7-0bfe-46be-b72c-099966acd4bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"friendId\": 3\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/friends/request","urlObject":{"protocol":"http","port":"8080","path":["friends","request"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0ec52d7-0bfe-46be-b72c-099966acd4bc"},{"name":"친구 요청 목록 조회","id":"0837e2dd-1513-4316-a8aa-2aa435f576b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/friends/request","urlObject":{"protocol":"http","port":"8080","path":["friends","request"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"0837e2dd-1513-4316-a8aa-2aa435f576b3"},{"name":"친구 요청 승인","id":"fda6d387-f4cf-4cfe-b619-efe9d706ebbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/friends/request/2","urlObject":{"protocol":"http","port":"8080","path":["friends","request","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"fda6d387-f4cf-4cfe-b619-efe9d706ebbb"},{"name":"친구 조회","id":"e90af26c-9a27-4f91-99cd-d731ec414df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/friends","urlObject":{"protocol":"http","port":"8080","path":["friends"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"e90af26c-9a27-4f91-99cd-d731ec414df0"},{"name":"친구 삭제","id":"dd0c071c-81c1-41b9-88af-c21d8c9e06ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://localhost:8080/friends/1","urlObject":{"protocol":"http","port":"8080","path":["friends","1"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd0c071c-81c1-41b9-88af-c21d8c9e06ae"},{"name":"친구 게시글 조회","id":"816ceeb4-bad0-4f21-b044-5517eab374fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:8080/friends/posts","urlObject":{"protocol":"http","port":"8080","path":["friends","posts"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"816ceeb4-bad0-4f21-b044-5517eab374fc"}],"id":"29a5921b-1454-4dd9-9546-9cc61ee279e3","description":"<h3 id=\"🧑🤝🧑-친구관리\">🧑‍🤝‍🧑 친구관리</h3>\n<ul>\n<li><p>친구 요청, 요청 목록 조회</p>\n</li>\n<li><p>친구 요청 수락, 거절</p>\n</li>\n<li><p>친구 목록 조회</p>\n</li>\n<li><p>친구 삭제</p>\n</li>\n</ul>\n","_postman_id":"29a5921b-1454-4dd9-9546-9cc61ee279e3"},{"name":"좋아요","item":[{"name":"게시글 좋아요","id":"074096e2-deba-4587-9e0c-305d68f95da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://localhost:8080/posts/1/likes","urlObject":{"protocol":"http","port":"8080","path":["posts","1","likes"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"074096e2-deba-4587-9e0c-305d68f95da3"},{"name":"댓글 좋아요","id":"9c0d09a9-be3f-49a0-ac36-ca626590a5f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://localhost:8080/comments/1/likes","urlObject":{"protocol":"http","port":"8080","path":["comments","1","likes"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c0d09a9-be3f-49a0-ac36-ca626590a5f0"}],"id":"08772873-771a-43a8-911f-90cc58f33ee5","description":"<h3 id=\"👍-좋아요\">👍 좋아요</h3>\n<ul>\n<li><p>게시글 좋아요 / 좋아요 취소</p>\n</li>\n<li><p>댓글 좋아요 / 좋아요 취소</p>\n</li>\n<li><p>게시글, 댓글 조회 시 좋아요 수 표시</p>\n</li>\n</ul>\n","_postman_id":"08772873-771a-43a8-911f-90cc58f33ee5"}]}