我想向rails应用程序发送POST请求,并将其保存并解析数据库中的请求正文......
我在接收端的路线目前设置为:
post '/request' => 'controller#receives_data'
当我将数据发布到此控制器时,我使用:
def post_it
connection.post(uri.path, "this is data", header_with_authkey)
end
接收帖子的我的控制器方法设置为:
def receives_data
log(request.body.read)
end
但是我得到422 error, unprocessable entity
,日志文件总是空的......
我需要包含哪些特定标头才能将其发布到rails应用程序?我需要在控制器或路由中包含哪些特定配置?
答案 0 :(得分:20)
request.raw_post
阅读请求正文。这对于需要直接处理原始请求的Web服务非常有用。
http://api.rubyonrails.org/classes/ActionDispatch/Request.html#method-i-raw_post
答案 1 :(得分:17)
您需要在帖子中设置以下标题。
Content-Type: application/json
Accept: application/json