How to fix TypeError: Cannot read property 'post' of undefined on Axios with Nestjs cronjob
问题 I tried using cron scheduler to get authentication token every 15 sec(Test purpose) the cron is supposed to call the auth endpoint but I got Exception has occurred: TypeError: Cannot read property 'post' of undefined @Cron(CronExpression.EVERY_15_SECONDS) async handleCron() { //const Primetimeauth = this.PrimetimeAuth() const primeAuth = await this.httpService.post('https://clients.com/api/auth', { "username": process.env.username, "password": process.env.password }).toPromise(); if