0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

miriwoお一人様Advent Calendar 2024

Day 3

GAS 任意の文字列を返すGETのエンドポイントを作成してみる

Posted at

概要

GASを使ってmessageのキーバリューとqueryのキーバリューを返すGETのAPIエンドポイントを作ってみようと思う。

内容

どうやらGASはメソッド名(doGet())でGETなどのメソッドを指定するらしい。

  1. 下記の様なGASのコードを記載

    function doGet(e) {
      const response = {
        message: 'Hello, world!',
        query: e.parameter
      };
      return ContentService.createTextOutput(JSON.stringify(response)).setMimeType(ContentService.MimeType.JSON);
    }
    
  2. 「デプロイ」をクリックし「新しいデプロイ」をクリック

    CleanShot 2024-11-21 at 14.24.00.jpg

  3. 歯車マークをクリックし「ウェブアプリ」をクリック

  4. 必要な情報を入力して「デプロイ」をクリック

    CleanShot 2024-11-21 at 14.24.44.jpg

  5. ウェブアプリのURLが表示されたら「コピー」をクリックしてメモ

  6. 下記をターミナルで実行してmessageとqueryが返ってくれば完了

    curl -L -X GET "先にコピーしたウェブアプリのURL"
    

    レスポンスの例↓

    {"message":"Hello, world!","query":{}}
    

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?