Rails API загружает изображение с помощью refile и s3, используя json
Мне нужно загрузить изображение в s3
с помощью refile
драгоценный камень с Rails-API
с помощью. json
Я следую руководству по refile, чтобы узнать, как настроить refile с помощью S3, и когда я тестирую его с помощью curl, POST-запрос создается успешно, но изображение не загружается.
Запрос данных JSON:
{
"picture": {
"image":"@bin/test.jpg;type=image/jpeg",
"imageable_id":"1",
"imageable_type":"Product"
}
}
Скручивание запроса:
# curl_post file
create() {
curl -v -X POST \
-H 'Accept: application/json' \
-H "Content-Type: application/json" \
-d @bin/product.json \
http://localhost:3000/api/pictures
}
$1
Журнал консоли:
Started POST "/api/pictures" for 127.0.0.1 at 2016-02-26 23:04:03 +0200
Processing by Api::PicturesController#create as JSON
Parameters: {"picture"=>{"image"=>"@bin/test.jpg;type=image/jpeg", "imageable_id"=>"1", "imageable_type"=>"Product"}}
(0.2ms) BEGIN
SQL (0.4ms) INSERT INTO "pictures" ("image_id", "imageable_type", "imageable_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["image_id", nil], ["imageable_type", "Product"], ["imageable_id", 1], ["created_at", "2016-02-26 21:04:03.444481"], ["updated_at", "2016-02-26 21:04:03.444481"]]
(33.3ms) COMMIT
Completed 201 Created in 39ms (Views: 0.7ms | ActiveRecord: 34.0ms)