LoginSignup
7
8

More than 5 years have passed since last update.

PhoenixFrameworkでREST APIを作ってみよう

Posted at

PhoenixFrameworkでは簡単にREST APIを作成することが出来ます。
簡単なやり方ですが、一つ間違えばmix testで盛大にコケるので、備忘録として書いておきます。

やり方

Phoenixのプロジェクト作成から順にやっていきます。

$ mix phoenix.new test_api
$ mix ecto.create
$ mix phoenix.gen.json Hoge hoge name:string

次にweb/router.exを編集しましょう。

router.ex
  # Other scopes may use custom stacks.
  # ↓のコードはデフォルトでコメントアウトになっているので外しましょう
  scope "/api", TestApi do
    pipe_through :api
    resources "/hoge", HogeController, except: [:new, :edit] # 追加
  end 

最後にmigrateをしてからmix testしてみましょう。

$ mix ecto:migrate
$ mix test

これでテストがコケなければOKです。

ここから更に、/api/v1/hogeなどAPIのバージョニングする時は以下の記事が参考になります。
Phoenix でバージョニングした REST API を構築する
(Thanks for WAKASUGI!)

7
8
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
7
8