HTTP Request

설치

$ npm i --save @nestjs/axios axios

요청 보내기

@Injectable()
export class CatsService {
  constructor(private readonly httpService: HttpService) {}

  findAll(): Observable<AxiosResponse<Cat[]>> {
    return this.httpService.get('<http://localhost:3000/cats>');
  }
}

grant_type

요청에 대한 응답 처리

<aside> 🍎 firstValueFrom() lastValueFrom()

</aside>