找不到谷歌adwords api

问题描述 投票:0回答:1

我尝试使用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/adwordshttps://developers.google.com/adwords/api/docs/guides/authentication#scope

如何使用google adwords使用google-api-nodejs-client API?

google-adwords google-api-nodejs-client
1个回答
0
投票

google-api-nodejs-client不支持Adwords API,请参阅this list of supported ones以供参考。

您可以找到Google Adwords API here的官方客户端库列表。不幸的是,JS目前没有Google维护的客户端库。

© www.soinside.com 2019 - 2024. All rights reserved.