Skip to content

Commit

Permalink
좋아요 기능 - 인증 헤더 수정
Browse files Browse the repository at this point in the history
- 좋아요 기능 호출 시 인증 헤더 검증 방식을 보완했습니다.
- 이전에는 Bearer 스키마를 포함한 전체 인증 헤더 문자열을 사용하였습니다.
- 이번 변경을 통해 Bearer 스키마 뒤의 공백을 제거하고 실제 토큰 값만 추출하도록 수정했습니다.
  • Loading branch information
jihwooon committed Mar 14, 2024
1 parent 125ca4b commit 88a594f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/likes/web/add-like.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { StatusCodes } from 'http-status-codes';
import { addLike } from '../application/add-like.service';

const addLikeHandler = ({ params: { id }, headers }: Request, res: Response) => {
const accessToken = headers.authorization?.split('Bearer ')[1];
const accessToken = headers.authorization;
ResponseHandler(() => addLike(accessToken, Number(id)), StatusCodes.CREATED, res);
};

Expand Down

0 comments on commit 88a594f

Please sign in to comment.