在Google API调用中指定请求正文,可以使用适用于JavaScript的Google API客户端库。以下是一个完整的答案:
在使用适用于JavaScript的Google API客户端库调用Google API时,可以通过指定请求正文来传递数据。例如,以下是一个使用Google Sheets API的示例代码:
const { google } = require('googleapis');
const sheets = google.sheets('v4');
const auth = new google.auth.GoogleAuth({
keyFile: 'path/to/your/keyfile.json',
scopes: 'https://www.googleapis.com/auth/spreadsheets',
});
const updateOptions = {
spreadsheetId: 'your-spreadsheet-id',
range: 'A1:B2',
valueInputOption: 'USER_ENTERED',
resource: {
values: [
['Hello', 'World'],
['Foo', 'Bar'],
],
},
};
sheets.spreadsheets.values.update(updateOptions, { auth }, (err, response) => {
if (err) {
console.error(err);
return;
}
console.log(response);
});
在上面的示例代码中,我们使用了适用于JavaScript的Google API客户端库来调用Google Sheets API,并通过指定请求正文来更新Google Sheets中的数据。
领取专属 10元无门槛券
手把手带您无忧上云