1

On documentation it is said that Only 1 asset can be attached to an entity. Is there any way to attach multiple images to an entity?

4

1 回答 1

1

目前这是不可能的。您可以通过使用文件夹来解决限制,并将它们连接到用户或其他实体:

将文件夹链接到资产

为了访问文件夹中图像的资产,您需要将文件夹链接到资产。您可以通过发出以下格式的 POST 请求来做到这一点:

POST /{org-uuid}/{app-uuid}/folders/{folder-uuid}/assets/{assets_id}

其中{folder-uuid}是文件夹{assets-uuid}的 UUID,是资产实体的 UUID。

以下是链接文件夹和为 my-image.jpg 图像创建的资产的方法:

POST https://api.usergrid.com/my-org/my-app/folders/6640a601-2ac6-11e2-92c3-02e81ae640dc/assets/9501cda1-2d21-11e2-b4c6-02e81ac5a17b
于 2015-11-17T20:58:48.150 回答