55
52

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 5 years have passed since last update.

【Sinatra】POSTメソッドでJSONを受け取りたい

Posted at

Railsのノリでparamsを見ても空のHashになってる.
GETメソッドはparamsでも大丈夫なんだけど…

とりあえずrequest.bodyを読み込んでJSONにパースすることで解決.

app.rb
# coding: utf-8

require 'sinatra'
require 'json'

post '/', provides: :json do
  params = JSON.parse request.body.read

end

# 後略

実際にPOSTしてみる.

console
$ curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"hoge":"ほげほげ","fuga":"ふがふが","piyo":"ぴよぴよ"}' http://localhost:4567/

たぶんparams[:hoge]とかparams[:fuga]で参照できるはず.

Rack::Request#paramsから辿って行くとRack::Request#POSTに以下の記述が.

This method support both application/x-www-form-urlencoded and multipart/form-data.

application/jsonには対応してないのね….

参考

55
52
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
55
52

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?