課題
ActionController::BadRequest: Invalid request parameters: Invalid encoding for parameter:
が発生した。
外部APIのレスポンスにShift_JISの日本語が入っていた。
解決
param_encodingを使う
検索結果
doc
sample
class SampleController < ActionController::Base
param_encoding :action_name, :param_name, Encoding::Shift_JIS
def action_name
end
end