如何在需要 API 密钥的 Google Apps 脚本中使用外部 API?

CTO*_*ton 4 javascript api xmlhttprequest urlfetch google-apps-script

是否可以在需要 API 密钥的 Google 应用脚本中使用外部 API?

如何使用 Google Apps 脚本从需要密钥的 API 获取数据?

Rey*_*cia 9

Apps 脚本具有UrlFetchApp,它可以获取资源并通过 Internet 与其他主机进行通信。这包括带有 API 密钥的 URL 请求。

使用 Google Sheets 和 Google Apps 脚本使用 API的示例:

示例代码:

function myFunction() {
  var ss = SpreadsheetApp.getActiveSpreadsheet(); //get active spreadsheet
  var sheet = ss.getSheetByName('data'); //get sheet by name from active spreadsheet


  var apiKey = 'Your API Key'; //apiKey for forecast.io weather api
  var long = "-78.395602"; 
  var lat =  "37.3013648";    
  var url = 'https://api.forecast.io/forecast/' + apiKey +"/" + lat +"," + long; //api endpoint as a string 

  var response = UrlFetchApp.fetch(url); // get api endpoint
  var json = response.getContentText(); // get the response content as text
  var data = JSON.parse(json); //parse text into json

  Logger.log(data); //log data to logger to check

  var stats=[]; //create empty array to hold data points

  var date = new Date(); //create new date for timestamp

  //The following lines push the parsed json into empty stats array
    stats.push(date);//timestamp 
    stats.push(data.currently.temperature); //temp
    stats.push(data.currently.dewPoint); //dewPoint
    stats.push(data.currently.visibility); //visibility

  //append the stats array to the active sheet 
  sheet.appendRow(stats)

}
Run Code Online (Sandbox Code Playgroud)

  • 切勿将 API 密钥以纯文本形式存储在源代码中。 (5认同)