使用rest API从alfresco中检索内容详细信息

时间:2015-02-24 14:13:02

标签: alfresco alfresco-share

我是alfresco的新手,我希望通过rest API获取alfresco的所有内容/文档详细信息。从Alfresco文件中我使用了以下休息网址。

GET /alfresco/service/api/metadata?nodeRef=workspace://SpacesStore/c58f4bc2-82d6-477‌​f-94d1-79cffc150c33

在这个网址中,我只获得了一个内容详细信息,但我需要所有子内容ID都使用其他API。

1 个答案:

答案 0 :(得分:0)

你想要的webscript是:

GET /alfresco/service/api/node/{store_type}/{store_id}/{id}/children

示例请求是:

/api/node/workspace/SpacesStore/b4cff62a-664d-4d45-9302-98723eac1319/children

如果您想要所有后代,而不仅仅是所有直系孩子,那么您必须像Get All Folder and Documents in Repository Alfresco Restful

一样创建自己的网页