Ruby on Railsアプリケーションで、POSTMAN RESTクライアントを介してBase64形式で画像をアップロードしようとしました。画像をPOSTすると、406 Not Acceptable Responseが返されます。データベースを確認したところ、画像があり、正常に保存されました。
このエラーの理由は何ですか、ヘッダーに指定する必要があるものはありますか?
私の要求:
URL --- http://localhost:3000/exercises.json
ヘッダ:
Content-Type - application/json
生データ:
{
"exercise": {
"subbodypart_ids": [
"1",
"2"
],
"name": "Exercise14"
},
"image_file_name": "Pressurebar Above.jpg",
"image":"******base64 Format*******"
}