【GAS】Google Apps Script でPOSTとGETリクエストを送信する

2022年5月6日

UrlFetchApp.fetchメソッドでリクエストを送信できます。

Google Apps Script – UrlFetchApp

POSTリクエスト

function sendPostRequest() {
  var data = {
    'name': 'Bob Smith',
    'age': 35,
    'pets': ['fido', 'fluffy']
  };
  var headers = {
    "key":********
  };
  var options = {
    "headers": headers,
    "Content-Type": "application/json"
    "method": "post",
    "payload": JSON.stringify(data)
  };

  UrlFetchApp.fetch("http://example.com", options);
}

GETリクエスト

function sendGetRequest() {
  var response = UrlFetchApp.fetch("http://www.google.com/");
  console.log(response.getContentText())
}

未分類

Posted by Next-k