我需要在脚本中使用Content API的2.1版,但是我不确定如何传递版本号。
这是代码的相关部分:
var products = ShoppingContent.Products.list(merchantId, {
pageToken: pageToken,
maxResults: maxResults,
includeInvalidInsertedItems: true
});
我尝试过version: 2.1
,但没有雪茄。
谢谢
答案 0 :(得分:1)
仅当您enabling是特定的高级服务时,才指定特定的客户端库的版本。并非所有客户端库都支持所有版本,例如Drive
advanced service不支持v3端点。
对于ShoppingContent
客户端库,Apps脚本仅提供对版本2的绑定:
因此,要使用v2.1,您将需要将Shopping Content API视为external API,并使用UrlFetchApp
对其进行访问。您需要根据需要授权请求,并使用OAuth2 authorization header方法构建自己的ScriptApp.getOAuthToken()
,例如:
function addAuthHeader(headers) {
var token = ScriptApp.getOAuthToken();
headers['Authorization'] = 'Bearer ' + token;
}
function getBaseURI(version) {
return 'https://www.googleapis.com/content/' + version + '/';
}
function listProducts(merchantId, pageToken) {
const base = getBaseURI('v2.1');
const path = merchantId + '/products';
if (pageToken)
path + '?pageToken=' + pageToken;
const headers = {
/* whatever you need here */
};
addAuthHeader(headers);
const fetchOptions = {
method: 'GET',
/* whatever else you need here
https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#fetchurl-params
*/
headers: headers
};
var pageResponse = UrlFetchApp.fetch(base + path, fetchOptions);
var onePageOfResults = JSON.parse(pageResponse.getContentText());
/* whatever else */
}