From b92ce8ed93a63cd7dece0867be303c515c7bc4a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=8A=B9=EC=A7=84?= Date: Tue, 26 Dec 2023 19:51:34 +0900 Subject: [PATCH] [CHORE] update gitignore --- backend/.gitignore | 2 + backend/src/docs/index.html | 2334 ----------------------------------- 2 files changed, 2 insertions(+), 2334 deletions(-) delete mode 100644 backend/src/docs/index.html diff --git a/backend/.gitignore b/backend/.gitignore index 8afde34e..4d0bcb47 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -41,3 +41,5 @@ out/ /src/main/generated/ /src/main/resources/*.json + +*.html diff --git a/backend/src/docs/index.html b/backend/src/docs/index.html deleted file mode 100644 index 5116e739..00000000 --- a/backend/src/docs/index.html +++ /dev/null @@ -1,2334 +0,0 @@ - - - - - - - - -TWTW API - - - - - - - - -
-
-

Auth

-
-
-

토큰 유효성 검사

-
-

HTTP request

-
-
-
GET /auth/validate HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

리프레시 토큰 갱신

-
-

HTTP request

-
-
-
POST /auth/refresh HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Content-Length: 84
-Host: localhost:8080
-
-{
-  "accessToken" : "access.token.value",
-  "refreshToken" : "refresh.token.value"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 84
-
-{
-  "accessToken" : "access.token.value",
-  "refreshToken" : "refresh.token.value"
-}
-
-
-
-
-
-

첫 로그인

-
-

HTTP request

-
-
-
POST /auth/save HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Content-Length: 163
-Host: localhost:8080
-
-{
-  "nickname" : "정해진",
-  "profileImage" : "http://some-url-to-profile-image",
-  "oauthRequest" : {
-    "token" : "client-id",
-    "authType" : "APPLE"
-  }
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 132
-
-{
-  "status" : "SIGNIN",
-  "tokenDto" : {
-    "accessToken" : "access.token.value",
-    "refreshToken" : "refresh.token.value"
-  }
-}
-
-
-
-
-
-

저장된 멤버 로그인

-
-

HTTP request

-
-
-
POST /auth/login HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Content-Length: 51
-Host: localhost:8080
-
-{
-  "token" : "client-id",
-  "authType" : "KAKAO"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 132
-
-{
-  "status" : "SIGNIN",
-  "tokenDto" : {
-    "accessToken" : "access.token.value",
-    "refreshToken" : "refresh.token.value"
-  }
-}
-
-
-
-
-
-
-
-

Path

-
-
-

차 경로 검색

-
-

HTTP request

-
-
-
POST /paths/search/car HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Content-Length: 144
-Host: localhost:8080
-
-{
-  "start" : "37.636040,126.827507",
-  "end" : "37.644998,126.832659",
-  "way" : "",
-  "option" : "TRAFAST",
-  "fuel" : "DIESEL",
-  "car" : 1
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 295
-
-{
-  "code" : 0,
-  "message" : "",
-  "currentDateTime" : "",
-  "route" : {
-    "" : [ {
-      "summary" : {
-        "distance" : 0,
-        "duration" : 0,
-        "tollFare" : 0,
-        "taxiFare" : 0,
-        "fuelPrice" : 0
-      },
-      "path" : [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ]
-    } ]
-  }
-}
-
-
-
-
-
-

보행자 경로 검색

-
-

HTTP request

-
-
-
POST /paths/search/ped HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Content-Length: 151
-Host: localhost:8080
-
-{
-  "startX" : 37.63604,
-  "startY" : 126.827507,
-  "endX" : 37.644998,
-  "endY" : 126.832659,
-  "startName" : "startPoint",
-  "endName" : "endPoint"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 399
-
-{
-  "type" : "FeatureCollection",
-  "features" : [ {
-    "type" : "Feature",
-    "geometry" : {
-      "type" : "Point",
-      "coordinates" : [ [ 126.92364104902308, 37.556759264185274 ] ]
-    }
-  }, {
-    "type" : "Feature",
-    "geometry" : {
-      "type" : "LineString",
-      "coordinates" : [ [ 126.92364104902308, 37.556759264185274 ], [ 126.92359383142113, 37.55672315696065 ] ]
-    }
-  } ]
-}
-
-
-
-
-
-
-
-

Plan

-
-
-

검색어와 카테고리를 통한 장소 검색

-
-

HTTP request

-
-
-
GET /plans/search/destination?query=%EC%9D%B4%EB%94%94%EC%95%BC%20%EC%95%88%EC%84%B1&longitude=127.426&latitude=37.0764&page=1&categoryGroupCode=CE7 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 556
-
-{
-  "results" : [ {
-    "placeName" : "이디야커피 안성죽산점",
-    "placeUrl" : "http://place.map.kakao.com/1562566188",
-    "roadAddressName" : "경기 안성시 죽산면 죽주로 287-1",
-    "longitude" : 127.426865189637,
-    "latitude" : 37.0764635355795
-  }, {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "longitude" : 127.420430538256,
-    "latitude" : 37.0766874564297
-  } ],
-  "isLast" : false
-}
-
-
-
-
-
-

계획 저장

-
-

HTTP request

-
-
-
POST /plans HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 494
-Host: localhost:8080
-
-{
-  "name" : "약속이름",
-  "groupId" : "514786bf-7a21-4bf0-b0f7-cfc5aad35030",
-  "planDay" : "2023-12-25 15:30",
-  "placeDetails" : {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "longitude" : 127.420430538256,
-    "latitude" : 37.0766874564297
-  },
-  "memberIds" : [ "0a11cb76-4e16-4f5b-8f68-b4719b734f3d", "c020a7ae-160b-449a-85f3-e6e89b3388f2" ]
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 109
-
-{
-  "planId" : "4c2401f0-0206-4194-a3da-f0fc7335ccc4",
-  "groupId" : "ca929802-1115-4458-a4e6-efb0c697b29c"
-}
-
-
-
-
-
-

계획 단건 조회

-
-

HTTP request

-
-
-
GET /plans/d6d4094b-3e79-418e-959c-f575b64b7ad1 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 1136
-
-{
-  "planId" : "28fcc438-9e50-42ad-a549-87c603b56f35",
-  "placeId" : "d141ad88-903a-41df-9db7-5870e30cadfc",
-  "planMakerId" : "cce11225-25cb-4bfd-af5d-70328abc6279",
-  "name" : "약속이름",
-  "planDay" : "2023-12-25 15:30",
-  "placeDetails" : {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "longitude" : 127.420430538256,
-    "latitude" : 37.0766874564297
-  },
-  "groupInfo" : {
-    "groupId" : "9301f4b7-1d29-4c71-b147-f1bf76df28a0",
-    "leaderId" : "db10fdca-8136-4481-a31e-09ca85df75cb",
-    "name" : "홍담진",
-    "groupImage" : "http://someUrlToS3",
-    "groupMembers" : [ {
-      "id" : "16d7e3fb-7f63-43a6-9c55-fff74d345537",
-      "nickname" : "카즈하"
-    }, {
-      "id" : "9b3d5f7b-0fb1-4b4b-b99c-4a95ecffc8af",
-      "nickname" : "사쿠라"
-    } ]
-  },
-  "members" : [ {
-    "id" : "29681e14-dc73-4175-a7f4-6ad9af6b741a",
-    "nickname" : "진호정"
-  } ],
-  "notJoinedMembers" : [ {
-    "id" : "b190d8b4-246a-46ba-8248-c516d2d33039",
-    "nickname" : "진정Ho"
-  } ]
-}
-
-
-
-
-
-

계획 삭제

-
-

HTTP request

-
-
-
DELETE /plans/39510194-eb98-4c74-b56f-c3264f4debf4 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

계획 초대

-
-

HTTP request

-
-
-
POST /plans/invite HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 55
-Host: localhost:8080
-
-{
-  "planId" : "f731be3b-aef4-44ea-b410-919e2bbd9baf"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 109
-
-{
-  "planId" : "19164f28-16f2-4391-aa11-3560f630bc37",
-  "groupId" : "d6a3e7d1-d10c-4de7-939c-e919d7ebbd7a"
-}
-
-
-
-
-
-

계획 참여

-
-

HTTP request

-
-
-
POST /plans/join HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 55
-Host: localhost:8080
-
-{
-  "planId" : "0229bc71-38d2-448d-a7d6-7a38e74483ab"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

계획 초대 삭제

-
-

HTTP request

-
-
-
DELETE /plans/invite HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 55
-Host: localhost:8080
-
-{
-  "planId" : "78dd3de1-caee-4370-8739-09da8ca8b66e"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

계획 탈퇴

-
-

HTTP request

-
-
-
POST /plans/out HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 55
-Host: localhost:8080
-
-{
-  "planId" : "fcb43d07-66d9-4b54-9174-2e76354dc42e"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

본인이 속한 계획 전체 조회

-
-

HTTP request

-
-
-
GET /plans HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 2044
-
-[ {
-  "planId" : "f3bb0e95-0b65-48ab-8b88-340af43ddb02",
-  "placeId" : "185c80f9-b767-4ce9-8472-873fb6073d11",
-  "planMakerId" : "6adc5352-7ca2-4e0c-85bb-26555be4b08a",
-  "name" : "약속1",
-  "planDay" : "2023-12-25 15:30",
-  "placeDetails" : {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "longitude" : 127.420430538256,
-    "latitude" : 37.0766874564297
-  },
-  "groupInfo" : {
-    "groupId" : "95788e2c-1030-4b09-8240-d4a1bf4aabc4",
-    "leaderId" : "aaef9a59-0ddf-4fef-b10e-5d9ce238e78d",
-    "name" : "홍담진",
-    "groupImage" : "http://someUrlToS3",
-    "groupMembers" : [ {
-      "id" : "7d71b704-1726-4f78-8930-a11c520e5627",
-      "nickname" : "카즈하"
-    }, {
-      "id" : "83ce7ff5-e616-43df-8925-3953e7fad31c",
-      "nickname" : "사쿠라"
-    } ]
-  },
-  "members" : [ {
-    "id" : "7295fe1a-e731-40f5-a958-decea6fa7164",
-    "nickname" : "진호정"
-  } ]
-}, {
-  "planId" : "8c0f134c-4ca7-4821-8d70-24072bce7b72",
-  "placeId" : "3f196bfb-18d8-475c-b719-13dd5af3bff9",
-  "planMakerId" : "7490ad88-ca09-4417-93ee-6a34ebceef0e",
-  "name" : "약속2",
-  "planDay" : "2023-12-25 15:30",
-  "placeDetails" : {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "longitude" : 127.420430538256,
-    "latitude" : 37.0766874564297
-  },
-  "groupInfo" : {
-    "groupId" : "84977729-1461-4f5f-8eb3-21848838c29b",
-    "leaderId" : "1112c6b9-a478-4044-abbd-6f01c4823cb0",
-    "name" : "HongDamJin",
-    "groupImage" : "http://someUrlToS3",
-    "groupMembers" : [ {
-      "id" : "1490f06d-2d7d-4a25-88cf-13e9de684c5f",
-      "nickname" : "카즈하"
-    }, {
-      "id" : "3e6a5be1-d4a4-4413-aceb-5eb82ec483f6",
-      "nickname" : "사쿠라"
-    } ]
-  },
-  "members" : [ {
-    "id" : "74e570ac-4888-4255-8c36-99eabbb7095b",
-    "nickname" : "JinHoJeong"
-  } ]
-} ]
-
-
-
-
-
-

계획 수정

-
-

HTTP request

-
-
-
POST /plans/update HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 464
-Host: localhost:8080
-
-{
-  "planId" : "360ad06e-a5cb-4f59-9fe0-90241be30003",
-  "planDay" : "2023-12-26 19:37",
-  "name" : "약속명",
-  "placeName" : "별다방",
-  "placeUrl" : "http://place.map.kakao.com/1562566188",
-  "categoryGroupCode" : "CE7",
-  "roadAddressName" : "경기 안성시 죽산면 죽주로 287-1",
-  "longitude" : 127.426865189637,
-  "latitude" : 37.0764635355795,
-  "memberIds" : [ "121123be-dea9-4ab5-b200-176749179e54", "0743153b-b4bf-487d-a28e-2b85636de029" ]
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

계획 날짜 수정

-
-

HTTP request

-
-
-
POST /plans/day HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 91
-Host: localhost:8080
-
-{
-  "planId" : "52dbbf99-d452-4f60-8f57-53922cc1235f",
-  "changeDay" : "2023-12-25 13:30"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-
-
-

Place

-
-
-

주변 장소 검색

-
-

HTTP request

-
-
-
GET /places/surround?longitude=127.426&latitude=37.0764&page=1 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 526
-
-{
-  "results" : [ {
-    "placeName" : "이디야커피 안성죽산점",
-    "placeUrl" : "http://place.map.kakao.com/1562566188",
-    "roadAddressName" : "경기 안성시 죽산면 죽주로 287-1",
-    "x" : 127.426865189637,
-    "y" : 37.0764635355795
-  }, {
-    "placeName" : "카페 온마이마인드",
-    "placeUrl" : "https://place.map.kakao.com/1625295668",
-    "roadAddressName" : "경기 안성시 죽산면 죽산초교길 36-4",
-    "x" : 127.420430538256,
-    "y" : 37.0766874564297
-  } ],
-  "isLast" : false
-}
-
-
-
-
-
-
-
-

Member

-
-
-

닉네임 중복 검색

-
-

HTTP request

-
-
-
GET /member/duplicate/JinJooOne HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 25
-
-{
-  "isPresent" : false
-}
-
-
-
-
-
-

닉네임으로 멤버 검색

-
-

HTTP request

-
-
-
GET /member?nickname=JIN_JOO_ONE HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 132
-
-{
-  "isExist" : true,
-  "memberResponse" : {
-    "id" : "a0d2fd36-456f-4bd3-be1e-3067d06de71b",
-    "nickname" : "JIN_JOO_ONE"
-  }
-}
-
-
-
-
-
-
-
-

Friend

-
-
-

친구 신청

-
-

HTTP request

-
-
-
POST /friends/request HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 57
-Host: localhost:8080
-
-{
-  "memberId" : "b284342b-a264-45ac-b09b-05dc466f436a"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

친구 승락/거절/차단

-
-

HTTP request

-
-
-
POST /friends/request HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 88
-Host: localhost:8080
-
-{
-  "memberId" : "d9b02567-c408-485d-bd1e-5ebc299dd897",
-  "friendStatus" : "ACCEPTED"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

친구 검색

-
-

HTTP request

-
-
-
GET /friends/search?nickname=hojin HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 176
-
-[ {
-  "memberId" : "1ef5dd21-9dfd-4b18-b322-8438798f8479",
-  "nickname" : "호진정"
-}, {
-  "memberId" : "3344cbfe-aec4-47ff-990c-6bc6b74dc8ed",
-  "nickname" : "진정해"
-} ]
-
-
-
-
-
-

친구 전체 조회

-
-

HTTP request

-
-
-
GET /friends/all HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 176
-
-[ {
-  "memberId" : "8d914438-05b1-4179-b4dc-dabccb0f6961",
-  "nickname" : "정해진"
-}, {
-  "memberId" : "9111e9d4-c736-4a91-ae4f-a10c23535a3e",
-  "nickname" : "주어진"
-} ]
-
-
-
-
-
-

친구 상태별 조회

-
-

HTTP request

-
-
-
GET /friends?friendStatus=REQUESTED HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 170
-
-[ {
-  "memberId" : "125c0c07-f168-47ae-81af-a71ad759a474",
-  "nickname" : "호전"
-}, {
-  "memberId" : "bff02e77-c8f8-458b-b252-d8782231feba",
-  "nickname" : "후진"
-} ]
-
-
-
-
-
-
-
-

Group

-
-
-

그룹 단건 조회

-
-

HTTP request

-
-
-
GET /group/550e8400-e29b-41d4-a716-446655440000 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 350
-
-{
-  "groupId" : "550e8400-e29b-41d4-a716-446655440000",
-  "leaderId" : "bdd80324-8079-47e5-919c-04ed85ea1987",
-  "name" : "HDJ",
-  "groupImage" : "GROUP-IMAGE",
-  "groupMembers" : [ {
-    "id" : "7333843a-8437-4b7b-a3a4-4408a414b572",
-    "nickname" : "DEAN"
-  }, {
-    "id" : "ca5a18aa-85a3-4b94-98c8-e9540e4e969c",
-    "nickname" : "ZION-T"
-  } ]
-}
-
-
-
-
-
-

그룹 생성

-
-

HTTP request

-
-
-
POST /group HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 52
-Host: localhost:8080
-
-{
-  "name" : "HDJ",
-  "groupImage" : "GROUP-IMAGE"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 350
-
-{
-  "groupId" : "550e8400-e29b-41d4-a716-446655440000",
-  "leaderId" : "773c27b1-6446-40ae-a91b-e4c6a6ca857a",
-  "name" : "HDJ",
-  "groupImage" : "GROUP-IMAGE",
-  "groupMembers" : [ {
-    "id" : "0476ab08-451a-41f1-9103-5a03bb759a03",
-    "nickname" : "DEAN"
-  }, {
-    "id" : "a8273ca5-c3ad-4397-b0b6-2055ed8b1d20",
-    "nickname" : "ZION-T"
-  } ]
-}
-
-
-
-
-
-

그룹 가입

-
-

HTTP request

-
-
-
POST /group/join HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 56
-Host: localhost:8080
-
-{
-  "groupId" : "52fb5792-c11e-4020-bdab-7f59266c9e4e"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 56
-
-{
-  "groupId" : "1c81c74d-5cbf-4e94-a677-882abee1e77d"
-}
-
-
-
-
-
-

그룹 초대

-
-

HTTP request

-
-
-
POST /group/invite HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 122
-Host: localhost:8080
-
-{
-  "friendMemberIds" : [ "8b0e1503-5f7b-42ce-9ec0-0fe15feedc5f" ],
-  "groupId" : "1bdef862-2968-4591-aebf-25c87811825d"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 363
-
-{
-  "groupId" : "34ea924e-6c60-45fb-86fb-b48718e8fc1e",
-  "leaderId" : "d59431ab-140c-42ab-bdda-735c9fe60e16",
-  "name" : "홍담진",
-  "groupImage" : "http://someUrlToS3",
-  "groupMembers" : [ {
-    "id" : "f1909283-0ea2-4c8a-9341-859282394c4b",
-    "nickname" : "DEAN"
-  }, {
-    "id" : "c5c9ef83-3198-482e-9f16-141f5cd953a0",
-    "nickname" : "ZION-T"
-  } ]
-}
-
-
-
-
-
-

그룹 초대 삭제

-
-

HTTP request

-
-
-
DELETE /group/invite HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 56
-Host: localhost:8080
-
-{
-  "groupId" : "651c2e63-c95d-4773-9173-718ffd8524d9"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

위치 공유 ON

-
-

HTTP request

-
-
-
POST /group/share/77fe7fe4-f5a3-4529-b705-26b9d6559765 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 122
-Host: localhost:8080
-
-{
-  "friendMemberIds" : [ "399df038-3ecc-42ad-bda0-a275a0aed2da" ],
-  "groupId" : "4b78caf8-62d8-4e22-bb5a-1c1c011422f2"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

위치 공유 OFF

-
-

HTTP request

-
-
-
POST /group/unshare/39bd613e-94de-4def-a830-cd2557186852 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 122
-Host: localhost:8080
-
-{
-  "friendMemberIds" : [ "7a9672fb-6c0e-474c-90c8-2c169341bcc2" ],
-  "groupId" : "21107255-87f0-4cae-82c2-51d8968d9c30"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

위치 공유 여부 조회

-
-

HTTP request

-
-
-
GET /group/share/1a453141-4ece-4df2-8944-fb68e7297b96 HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 122
-Host: localhost:8080
-
-{
-  "friendMemberIds" : [ "d86d5af1-326e-4001-979c-63e1494a582d" ],
-  "groupId" : "f9baaab6-55a8-40fd-b60f-f7bc6e98da76"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 129
-
-{
-  "groupId" : "00830a20-b5c2-45aa-af49-f3e4cf9aed55",
-  "memberId" : "be95e987-1ee8-45b1-9c05-63ebbe061c22",
-  "share" : true
-}
-
-
-
-
-
-

자신의 소속 그룹 정보 반환

-
-

HTTP request

-
-
-
GET /group HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 739
-
-[ {
-  "groupId" : "b01fc266-2c21-414e-a58a-5daf2aa31a7e",
-  "leaderId" : "ab89ed7a-0b78-4cd6-a6a2-914179d40a2b",
-  "name" : "BLACK_PINK",
-  "groupImage" : "I_LOVE_YOU_LOSE",
-  "groupMembers" : [ {
-    "id" : "0c61a672-a49c-4388-b3f6-43d3ddc4f043",
-    "nickname" : "LISA"
-  }, {
-    "id" : "2395b77f-e4a5-4737-979d-aefd7677d996",
-    "nickname" : "제니"
-  } ]
-}, {
-  "groupId" : "cac56442-7273-4723-b742-9bed42b4c8d3",
-  "leaderId" : "ab89ed7a-0b78-4cd6-a6a2-914179d40a2b",
-  "name" : "LE_SSERAFIM",
-  "groupImage" : "I_LOVE_YOU_채원",
-  "groupMembers" : [ {
-    "id" : "a2735bca-5bb9-429d-88ad-a09d5c114892",
-    "nickname" : "카즈하"
-  }, {
-    "id" : "59999a12-2633-4c43-bcc2-cb516a4a0d3b",
-    "nickname" : "사쿠라"
-  } ]
-} ]
-
-
-
-
-
-

그룹 자신 위치 수정

-
-

HTTP request

-
-
-
POST /group/location HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 97
-Host: localhost:8080
-
-{
-  "groupId" : "6f4c66cf-8800-4370-803c-6df7ff486057",
-  "longitude" : 0.0,
-  "latitude" : 0.0
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-

그룹 탈퇴

-
-

HTTP request

-
-
-
POST /group/out HTTP/1.1
-Content-Type: application/json;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 56
-Host: localhost:8080
-
-{
-  "groupId" : "0e4d4f65-bb7f-49c4-ba6f-203477d54c43"
-}
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 204 No Content
-
-
-
-
-
-
-
-

Image

-
-
-

프로필 이미지 업로드

-
-

HTTP request

-
-
-
POST /images HTTP/1.1
-Content-Type: multipart/form-data;charset=UTF-8
-Authorization: Bearer wefa3fsdczf32.gaoiuergf92.gb5hsa2jgh
-Content-Length: 37
-Host: localhost:8080
-
-"image를 request시 넣어주세요"
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json;charset=UTF-8
-Content-Length: 76
-
-{
-  "imageUrl" : "https://storage.googleapis.com/bucket-name/some-file-id"
-}
-
-
-
-
-
-
-
- - - - - - \ No newline at end of file