使用服务帐户从广告脚本调用 AdWords 和 BigQuery 的网址是啥?
Posted
技术标签:
【中文标题】使用服务帐户从广告脚本调用 AdWords 和 BigQuery 的网址是啥?【英文标题】:What's the url to call AdWords and BigQuery from ads script with a service account?使用服务帐户从广告脚本调用 AdWords 和 BigQuery 的网址是什么? 【发布时间】:2021-06-06 00:29:54 【问题描述】:我想修改这些 API 调用以使用 GCP 服务帐号而不是我的身份。
var report = AdsApp.search(searchQuery);
var table = BigQuery.Tables.insert(table, projectId, dataSetId);
BigQuery.Jobs.insert(job, BIGQUERY_PROJECT_ID);
我阅读了这个article,但不知道如何找到AdsApp
和BigQuery
的网址。
我搜索了这个post,但仍然不确定。
嗨,
我想编写一个广告脚本来使用服务帐户调用 GoogleAds url 和 BQ url。
我看到了这段代码。 我的 GAds 和 BQ api 的网址是否正确?
谢谢!
======================
// Natural Language API Sentiment URL
var url =
'https://language.googleapis.com/v1beta1/documents:analyzeEntities';
var options =
method: 'POST',
contentType: 'application/json',
payload: JSON.stringify(body)
;
var response = authUrlFetchApp.fetch(url, options);
var result = JSON.parse(response.getContentText());
Logger.log(result);
if (result.entities)
// return a list of identified entities
return result.entities;
throw Error('No entities response returned');
【问题讨论】:
【参考方案1】:我认为这些是网址:
var url =...;
//https://adwords.google.com/cm/CampaignMgmt?authuser=1&__u=%param_one%&__c=%param_two%#c.%param_three%.create&app=cm
//https://bigquery.googleapis.com
//https://adwords.google.com/cm/CampaignMgmt?
var options =
method: 'POST',
contentType: 'application/json',
payload: JSON.stringify(body)
;
var response = authUrlFetchApp.fetch(url, options);
var result = JSON.parse(response.getContentText());
Logger.log(result);
if (result.entities)
// return a list of identified entities
return result.entities;
throw Error('No entities response returned');
【讨论】:
以上是关于使用服务帐户从广告脚本调用 AdWords 和 BigQuery 的网址是啥?的主要内容,如果未能解决你的问题,请参考以下文章