You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
이슈 :
회사에서 s3 private bucket의 pdf file binary코드로 가져와 base64로 암호화 하고 반환하는 작업을 진행
local에서는 정상 동작했고 설정 값도 정상 이였지만 개발 서버에 배포 후 테스트 하면 Invalid character in header content ["authorization"] 에러 발생
원인 :
개발 서버의 경우 configService를 통해 가져온 accessKeyId와 secretAccessKey값에 자동 줄바꿈 처리가 되는 점 확인
해결 방안 :
trim()을 사용하여 해결
사용한 패키지 및 소스 코드
[ 패키지 설치 명령어 ]
- (구 버전) $ npm install aws-sdk
- (신 버전) $ npm install @aws-sdk/client-s3
이슈 :
회사에서 s3 private bucket의 pdf file binary코드로 가져와 base64로 암호화 하고 반환하는 작업을 진행
local에서는 정상 동작했고 설정 값도 정상 이였지만 개발 서버에 배포 후 테스트 하면 Invalid character in header content ["authorization"] 에러 발생
원인 :
개발 서버의 경우 configService를 통해 가져온 accessKeyId와 secretAccessKey값에 자동 줄바꿈 처리가 되는 점 확인
해결 방안 :
trim()을 사용하여 해결
사용한 패키지 및 소스 코드
The text was updated successfully, but these errors were encountered: