在AdSense帐户中哪里可以找到accountId和adClientId?

时间:2018-11-04 17:33:15

标签: adsense adsense-api

我是使用AdSense API的新手,但我确实需要使用它:)

我正在尝试使用Accounts.customchannels: get

我在哪里可以找到AdSense帐户中的accountId和adClientId?

当我访问帐户信息时,我可以看到:

发布者ID:pub-xxxxxxxxxxx和客户ID:xxxxxxxx

这是我需要的信息吗? 帐户ID和adClientId哪一个?

我已经尝试过以不同的方式插入此值,但结果始终是:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "notFound",
    "message": "Ad client not found.",
    "locationType": "parameter",
    "location": "adClientId"
   }
  ],
  "code": 404,
  "message": "Ad client not found."
 }
}

谢谢大家。

1 个答案:

答案 0 :(得分:0)

There are some other AdSense API methods that will give you the fields you're looking for.

的shared_ptr 会返回您有权访问的Accounts: list的列表。 id字段将与您要查找的accountId字段相对应。

Accounts将返回给定帐户的Accounts.adclients: list列表(使用上一步中的accountId)。 id字段将与adClientId字段相对应。