2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

初めてのFirebaseを触ってみる(Functions - REST API)

Last updated at Posted at 2020-04-19

はじめに

おはようございます。こんにちは。こんばんは。
今回は前回発生した緊急クエストです。
では、早速行って見ましょう。

REST APIとは

こちらの記事が参考になります。

expressを使ったREST API

expressとは

expressはNode.jsで利用できるWebアプリケーションフレームワークです。

インストール

$ npm install express --save

API開発

functionsディレクトリの配下にrouter/index.jsを作り、そこにルーティングの設定を書きます。

※ルーティングの実装はルーティング用のオブジェクトを別ファイルで管理するとコードが読みやすくなるのでおすすめ

functions/router/index.js

const express = require("express");
const router = express.Router();

router
    .route("/")
    .get((request, response) => {
    // ここにコレクション等の取得を書く
        response.json({
            "message": "call by the GET method"
        })
    })
    .post((request, response) => {
    // ここデータ送信の処理を書く
        response.json({
            "message": "call by the POST method"
        })
    })

router
    .route("/:id")
    .put((request, response) => {
    // ここデータ更新の処理を書く
        response.json({
            "message": "call by the PUT method ID:" + request.params.id
        })
    })
    .delete((request, response) => {
    // ここデータ削除の処理を書く
        response.json({
            "message": "call by the DELETE method ID:" + request.params.id
        })
    })

module.exports = router

最後にこの設定をCloud Functionsに組み込みましょう。

functions/index.js

const functions = require('firebase-functions');
const express = require("express");
const app = express();

const router = require("./router/index"); 
app.use("/", router);
 
exports.api= functions.https.onRequest(app);

以上がCloud Functionsとexplessを組み合わせるAPI(REST API)の作り方でした。
解説が浅いところとか、間違い等があれば教えてください。
次回は最終回のFirebaseのHostingです。
最後まで読んでいただきありがとうございました。

Twitterやってます。良ければチェックして見てください。:point_up::point_up::point_up:

リンク

2
5
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
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?