ユーザ用ツール

サイト用ツール


gas:example:http_client

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

次のリビジョン
前のリビジョン
gas:example:http_client [2023/08/23 15:53] – 作成 mikotogas:example:http_client [2023/08/23 18:52] (現在) mikoto
行 1: 行 1:
 +[[:gas|一つ上へ]]
 <code javascript> <code javascript>
 function httpget() { function httpget() {
行 11: 行 12:
 } }
  
 +</code>
 +
 +===== POSTパターン =====
 +<code>
 +function httpclient() {
 +  const url = 'url'; // URLを入力
 +  const payload = {
 +    title: 'Sample Post',
 +    body: 'This is a sample post.',
 +    userId: 1
 +  };
 +
 +  const options = {
 +    method: 'post',
 +    contentType: 'application/json',
 +    payload: JSON.stringify(payload)
 +  };
 +
 +  const response = UrlFetchApp.fetch(url, options);
 +
 +  if (response.getResponseCode() === 201) {
 +    const data = JSON.parse(response.getContentText());
 +    Logger.log(data);
 +  } else {
 +    Logger.log('POST request failed. Status code: ' + response.getResponseCode());
 +  }
 +
 +}
 </code> </code>
gas/example/http_client.1692773584.txt.gz · 最終更新: 2023/08/23 15:53 by mikoto