私はPOST request
このように私の地元の開発者に作りたいです:
HTTParty.post('http://localhost:3000/fetch_heroku',
:body => {:type => 'product'},)
ただし、サーバーコンソールからはレポートされます
Started POST "/fetch_heroku" for 127.0.0.1 at 2016-02-03 23:33:39 +0800
ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by AdminController#fetch_heroku as */*
Parameters: {"type"=>"product"}
Can't verify CSRF token authenticity
Completed 422 Unprocessable Entity in 1ms
これが私のコントローラーとルートのセットアップです。とても簡単です。
def fetch_heroku
if params[:type] == 'product'
flash[:alert] = 'Fetch Product From Heroku'
Heroku.get_product
end
end
post 'fetch_heroku' => 'admin#fetch_heroku'
何をする必要があるのかわかりませんか?CSRFをオフにすることは確かに機能しますが、そのようなAPIを作成するときは私の間違いだと思います。
他に必要な設定はありますか?
protect_from_forgery with: :null_session
。