在我的 Ruby on Rails 应用程序中,我尝试通过 POSTMAN REST客户端以Base64格式上传图像。当我发布图像时,我收到406 Not Acceptable Response。当我检查我的数据库时,图像在那里并成功保存。
这个错误的原因是什么,我需要在标题中指定什么吗?
我的请求:
网址--- 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*******"
}