본문 바로가기

Backend/NestJS

호출한 API의 data 찍어보는법

    const response = await firstValueFrom(this.httpService.get(`${this.configService.get('디렉토리이름.url')}/디렉토리이름/경로1/경로2`));
    const responseData = response.data;
    return responseData;

이런 식으로 호출한 API의 데이터를 찍어볼 수 있다.