0
0

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 1 year has passed since last update.

Railsでパラメータを付与してアクセスしたときにエラーになって処理が始まらない

Posted at

はじめに

この記事は2021年11月にまとめていた「細かいつまずいたことをメモしておく(11月編)をそれぞれ投稿した内容になります
解決方法が最新でない可能性もありますのでご了承ください

問題

URLにauth_tokenというパラメータを付与して、アクセスする処理を行っていたのですが、なぜかエラーが発生してしまう
before_actionも動いていないようだった

エラーは以下のように出ていた

ActionController::BadRequest: Invalid request parameters: Invalid encoding for parameter:

解決方法

調べたところ日本語をパラメータとして渡していたのが原因だった
これはブラウザに起因するもので、URLのエンコードが正しくない場合に起こるそう

試しにlocalhost:3000?auth_token=testなどでアクセスしたら問題なく動いた
tokenにはアルファベットしか利用しないため日本語をやめてこのままにした
もし日本語を使うならエンコードが必要そう

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?