Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 drupal 8(beta 12)上创建/更新/删除节点drupal_http_request()。但我无法创建文件/图像和/或将其链接到节点的字段。
drupal_http_request()
我添加了 REST UI 以启用文件类型进行休息,甚至将权限设置为匿名。但我总是得到一个 403 禁止返回。
这是我的休息请求。但我真的不知道我的 json 应该是什么样子。我在有/无授权、Accept 和 Content-Type 的情况下尝试了它。
谁能告诉我我的 json/rest 请求有什么问题?
使用命令工具 base64 编码图像并使用:
{"_links": { "type":{"href":"http://drupal.url/rest/type/file/file"} }, "filename":[{"value":"input.jpg"}], "filemime":[{"value":"image/jpeg"}], "data":[{"value":"insert-output-from-base64-here"}] }