InvalidAuthenticityToken errors in mobile

人盡茶涼 提交于 2019-11-29 07:35:19

This issue is discussed here. If it is your issue, you should see Can't verify CSRF token authenticity Completed 422 Unprocessable Entity within your logs. Two solutions are discussed

  • change cache control config.action_dispatch.default_headers.merge!('Cache-Control' => 'no-store, no-cache')
  • change invalid session to a null session protect_from_forgery with: :null_session

But it seems to be still an open issue.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!