Super Kawaii Cute Cat Kaoani
본문 바로가기

{Troubleshooting}5

[트러블슈팅] TMAP 204 NO_CONTENT 오류 트러블 슈팅 TMAP 204 NO_CONTENT 오류 Tmap POI 검색 API 호출 시 특정 키워드(강남 등)를 검색하면 HTTP 204 No Content 가 반환되었다. ttps://apis.openapi.sk.com/tmap/pois?version=1&format=json&searchKeyword=강남.. 이렇게 접속하면 정상적으로 응답이 내려왔다. 우선 TMAP API 를 사용할 때 204에러가 뜨면 다음과 같은 문제가 발생한 것이다. 에러 코드는 티맵 사이트에서 확인 가능하다https://tmapapi.tmapmobility.com/main.html#webservice/guide/webserviceGuide.guide11 Guide | T MAP API tmapapi.tmapm.. 2025. 9. 29.
[트러블슈팅] Git merge conflict 처리 방법 깃 병합할 때 충돌 나는 거 정리 🚨 발생한 문제와 상황다음과 같이 깃 pull 받고 난 다음 충돌이 발생할 때 Auto-merging src/components/ExampleComponent.jsxCONFLICT (content): Merge conflict in src/components/ExampleComponent.jsxAutomatic merge failed; fix conflicts and then commit the result. 🤔 문제의 원인 파악하기로컬에서 수정한 파일과 원격의 변경사항이 충돌동일한 파일의 동일한 줄을 양측에서 수정하여 Git이 자동 병합 불가할 때 정리하자면 지금 내가 작업한 거랑 깃허브에 있는 거랑 코드가 다를 때 발생한다... 💡해결 방법 .. 2025. 7. 28.
[트러블 슈팅] AWS SDK와 Multer-S3 호환성 문제 발생 🚨 발생한 문제와 상황Unhandled Error: TypeError: this.client.send is not a functionat _Upload.__uploadUsingPut 🤔 문제의 원인 파악하기이 오류는 AWS SDK v3를 사용할 때 발생하는 문제aws sdk를 사용할 때 multer와 호환성 문제가 발생하면 생기는 문제라고 한다 🏃🏻‍♀️ 시도해본 방법 1️⃣AWS SDK 버전 체크npm uninstall @aws-sdk/client-s3npm install aws-sdk@2.1356.02️⃣ multer & multer-s3 다운그레이드npm uninstall multer multer-s3npm install multer@1.4.2 multer-s3@2.9.0✅ 3️⃣ image.. 2025. 3. 3.
[트러블 슈팅] Prisma mode: "insensitive" 옵션의 MySQL 미지원 문제 🚨 발생한 문제와 상황  mode: "insensitive" 옵션이 Prisma의 일부 데이터베이스(MySQL, PostgreSQL 등)에서 지원되지 않는 문제//팁 검색 기능 (제목, 내용, 해시태그 포함) 254 public async searchTips(query: string | null, hashtags: string[], skip: number, take: number, sort: string) {→ 255 return await prisma.tip.findMany({ where: { AND: [ { OR: [ { title: { .. 2025. 3. 3.
[트러블 슈팅] AWS s3 이미지 깨지는 현상 🚨 발생한 문제와 상황 이미지를 Get해서 읽어올 때 다음과 같은 문제 발생   Request URL:Request Method:GETStatus Code:403 ForbiddenReferrer Policy:strict-origin-when-cross-origincontent-type:application/xmldate:Sat, 15 Feb 2025 13:08:43 GMTserver:AmazonS3transfer-encoding:chunkedx-amz-id-2:BIw5J4DrAOJaj2DyehR/S20GPFi1PLt2rp/T35xPKemOTLoBETud4npSoVKjachfdbuMu3isJwBs8K67jo5ZJtk0IBCNXXwzx-amz-request-id:BS7P27Z9DFXKKH4Haccept:i.. 2025. 3. 3.