我正在尝试使用服务帐户连接到Google Ads API。对于分析,有一篇名为Hello Analytics API: Java quickstart for service accounts的好文章,其中介绍了如何进行设置。对于Google广告,我无法在线找到任何文档。
所以我的两个问题是:
更新2/10
我成功通过了身份验证。尝试从API提取数据时,确实收到错误消息。
curl.exe --request POST "https://googleads.googleapis.com/v5/customers/******/googleAds:searchStream"
--header "Content-Type: application/json"
--header "Authorization: Bearer ******"
--header "developer-token: ******"
--data "{'query': 'SELECT * FROM campaign WHERE segments.date DURING YESTERDAY'}"
[{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"status": "UNAUTHENTICATED",
"details": [
{
"@type": "type.googleapis.com/google.ads.googleads.v5.errors.GoogleAdsFailure",
"errors": [
{
"errorCode": {
"authenticationError": "NOT_ADS_USER"
},
"message": "User in the cookie is not a valid Ads user."
}
]
}
]
}
}
]
google文档说此错误是因为该帐户未与google ads帐户(https://developers.google.com/google-ads/api/docs/best-practices/common-errors#not_ads_user)相关联。该请求正在由api处理,我知道这是因为该请求在google ads api控制台中被视为错误。
在与此Google API Api的此API兼容的凭据中,列出了我的服务帐户。我对此错误感到有些困惑。据我所知,该服务帐户已与google ads帐户相关联。
答案 0 :(得分:0)
根据Google Ads API Service Accounts的警告:
注意:并非我们所有的客户端库当前都支持服务帐户。如果您自己实现OAuth2服务帐户流程,则仍然可以使用服务帐户。