Node express에서 REST API로 토큰 받기를 하려고 합니다. 응답 받을 경우 data 부분 텍스트가 깨집니다

죄송합니다 본문을 잘못 이해했습니다.

node에서 node-fetch 를 사용하거나(추천) Accept-Encoding 에 deflate, br 정도만 설정해서 요청하시면 좋을것 같습니다.

// 예
const config = {
  headers: {
    "Accept-Encoding": "deflate, br",
    "Content-Type": "application/x-www-form-urlencoded;charset=utf-8"
  }
}

nodejs에서 axios 사용시 압축된 응답의 경우 (ex, gzip, deflate, br) decompress 가 잘 동작하지 않는것으로 알고 있습니다.

1개의 좋아요