许多用户已经提出了这个问题,我已经尝试了所有解决方案,但没有一个解决过这个问题。例如:这个问题curl json post request via terminal to a rails app,但结果仍然相同。
我正在尝试通过运行此命令使用CURL通过终端发送数据:
curl -i -H 'Authorization: Token token'="9asdadsasd87t8ddaghsd" -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"request":{"sender_mobile":"12331212","recipient_mobile":"121231231","location":"Bangalore"}}' http://localhost:3000/api/v1/requests
并获得回应:
HTTP/1.1 422 Unprocessable Entity
Content-Type: text/html; charset=utf-8
Content-Length: 15450
X-Request-Id: f1025e69-9ff3-4bd1-9bd5-0679fbcc50bc
X-Runtime: 0.062784
Server: WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)
Date: Thu, 08 Jan 2015 10:35:45 GMT
Connection: Keep-Alive
有如此多的垃圾线,但我想这个响应足以理解可能是什么原因。这是完成错误的链接http://pastebin.com/n342HeYL
我可以使用命令成功执行GET请求:
curl -i 'http://localhost:3000/api/v1/requests' -H 'Authorization: Token token'="952aa4598ec2cd87c8b69056616a00af"
回应:
HTTP/1.1 200 OK
X-Frame-Options: SAMEORIGIN
X-Xss-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Type: application/json; charset=utf-8
Etag: "b956523e0345d2bb466d39823195b600"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 91d21235-246f-4557-a67a-92dca02b9cc1
X-Runtime: 0.011781
Server: WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)
Date: Thu, 08 Jan 2015 10:51:55 GMT
Content-Length: 486
Connection: Keep-Alive
所以,我不知道POST请求中有什么问题。
这是我的 request_controller.rb文件
module Api
module V1
class RequestsController < ApplicationController
# skip_before_action :verify_authenticity_token
before_filter :restrict_access
respond_to :json
def index
respond_with Request.all
end
def show
respond_with Request.find(params[:id])
end
def create
respond_with Request.create(params[:request])
end
def update
respond_with Request.update(params[:id], params[:request])
end
def destroy
respond_with Request.destroy(params[:id])
end
private
def restrict_access
authenticate_or_request_with_http_token do |token, options|
ApiKey.exists?(access_token: token)
end
end
end
end
end
答案 0 :(得分:2)
关于上面的谈话,让我写一个答案。
如果你在rails中看到一个表单,它将有一行如下所述
<input name="authenticity_token" type="hidden" value="+wFCV3kv0X/WI0qb54BgYlDzi+Tp+6HIGM61a4O6gg0=">
现在,如果在ApplicationController
中你有这一行protect_from_forgery
那么它总是期望authenticity_token
如果它不可用,它会抛出你日志中提到的错误因此我建议删除该行是因为您无法从api authenticity_token
请求传递POST
作为参数。
您的获取请求工作正常的原因是因为rails并未期望authenticity_token
请求GET
。
现在,您说您已删除了protect_from_forgery
但是您遇到了内部服务器错误,因为它与GET
或POST
请求无关,因此必须由您处理但是你的rails应用程序出错了。所以解决这个错误,它应该工作得很好。或者也可以在这里发布错误日志,这样我可以帮助你。
编辑:解决内部服务器500错误
如果粘贴在下面的日志中,您还必须允许控制器中的属性,就像代码中提到的@abhinay一样。
希望有所帮助