Search code examples
node.jsreactjsexpressgoogle-apinodemailer

importing googleapis in Nodejs gives error. How to properly import googleapis pakage.Iam using type:modules


Following is my imports and google OAuth2 config. But it gives error as: ReferenceError: OAuth is not defined

import google from "googleapis";
let OAuth2 = google.auth.OAuth2;

const oauth2Client = new OAuth2(
  MAILING_SERVICE_CLIENT_ID,
  MAILING_SERVICE_CLIENT_SECRET,
  MAILING_SERVICE_REFRESH_TOKEN,
  SENDER_EMAIL_ADDRESS,
  OAUTH_PLAYGROUND
);


Solution

  • if "type": "module" in package.json do like this:

    import {google} from "googleapis";
    

    else

    const {google} = require("googleapis");