我可以REST
毫无问题地通过创建文章。但是我不知道如何提交文件。
我如何通过提交文件(图像)到Drupal 8 REST
?
更新:
REST UI - File: /file/{id}
Example image added in article:
/admin/content/files -> /admin/content/files/usage/1
file {id} = 1?
Get file id 1:
curl --request GET --user admin:admin --header 'Accept: application/hal+json' http://d8.local/file/1
A fatal error occurred: No route found for "GET /file/1"
发布图片(不含实体内容):
curl --request POST --user admin:admin --header 'Content-type: application/hal+json' http://d8.local/entity/file
{"error":"No entity content received."}
我找不到如何创建的功能entity content
。