Skip to content

Commit

Permalink
chore: http Authorization 헤더 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbc committed Jan 12, 2024
1 parent ede4506 commit 9a42641
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion http/bingterpark.http
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Content-Type: application/json
### 공연장 등록
POST http://localhost:8080/api/v1/event-halls
Content-Type: application/json
Authorization: Bearer {{adminToken}}

{
"name": "잠실 종합운동장",
Expand All @@ -35,6 +36,7 @@ Content-Type: application/json
### 공연 등록
POST http://localhost:8080/api/v1/events
Content-Type: application/json
Authorization: Bearer {{adminToken}}

{
"title": "히사이시 조 영화음악 콘서트",
Expand All @@ -52,6 +54,7 @@ Content-Type: application/json
### 공연 회차 생성
POST http://localhost:8080/api/v1/event-times/2
Content-Type: application/json
Authorization: Bearer {{adminToken}}

{
"round": 1,
Expand All @@ -62,6 +65,7 @@ Content-Type: application/json
### 공연 좌석 구역 생성
POST http://localhost:8080/api/v1/events/2/seat-area
Content-Type: application/json
Authorization: Bearer {{adminToken}}

{
"requests": [
Expand All @@ -79,6 +83,7 @@ Content-Type: application/json
### 공연 좌석 생성
POST http://localhost:8080/api/v1/event-seats/events/2
Content-Type: application/json
Authorization: Bearer {{adminToken}}

[
{
Expand Down Expand Up @@ -146,7 +151,7 @@ http://localhost:8081/login

### 내 정보 확인
GET http://localhost:8081/api/v1/members/me
Authorization: Bearer {{accessToken}}
Authorization: Bearer {{token}}

### 공연 목록 - 리뷰순
GET http://localhost:8080/api/v1/events/sort/ranking?page=1&size=10&genreType=CONCERT&dateOffset=7
Expand Down

0 comments on commit 9a42641

Please sign in to comment.