我尝试使用google.adwords api,但它似乎不存在。
代码:
import { Router } from "express";
import { google } from "googleapis";
function adwords() {
const router = Router();
router.get("/adwords", (req, res) => {
const googleAdwords = google.adwords;
});
return router;
}
export { adwords };但我在这里找到了google adwords范围(https://www.googleapis.com/auth/adwords) https://developers.google.com/adwords/api/docs/guides/authentication#scope
如何使用google adwords API使用google-api-nodejs-client?
https://stackoverflow.com/questions/54802429
复制相似问题