18
6

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.

[Rails] CSRFトークンチェックでエラーになるのを回避する方法

Last updated at Posted at 2018-10-18

SPAなどを作っていて、Railsアプリとは別のアプリから
XHRでリクエストするAPIとして利用する場合は、CSRFトークンの検証ができないため、エラーになる。

解決方法

APIで利用するコントローラに

skip_before_action :verify_authenticity_token

を追加すればCSRFトークン検証をスキップすることができる。

ちなみによく

protect_from_forgery with: :null_session

を入れて解決という記事を見かけるがこれだけでは

「csrfトークンがないリクエストを例外にしない」

だけで、解決できないので注意(むしろこれはなくてもOK)

18
6
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
18
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?