Alfresco REST API 用于下载文件
Alfresco REST API for downloading document
我想使用 Afresco REST API 下载文档。经过一些研究,我发现了这个 REST API:
/alfresco/s/api/node/content{property}/{store_type}/{store_id}/{id}
但是我不知道如何传递参数。
如果我在分享中的文档详细信息 URL 是:
http://127.0.0.1:8080/share/page/context/mine/document-details?nodeRef=workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2
在 {property}
、{store_type}
、{store_id}
和 {id}
中应该传递什么?
您可以在下方 URL.
的露天场所找到每个网络脚本 (REST API) 的详细信息
http://localhost:8080/alfresco/service/index
您的 API 如下所示。
http://localhost:8080/alfresco/service/script/org/alfresco/cmis/content.get
参数说明如下
Property : Name of property which you want to retrieve.
store_type : Workspace Protocol
store_id : Store Id of node
id : Id of node.
对于这个 NodeRef
workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2
参数的值将是:
{property}: content
{store_type}: Workspace
{store_id}: spaceStore
{id}: 7f77488a-60a0-48c3-9369-77183ccad0d2
Krutik 已经指定了与每个参数相关的详细信息。
你应该使用这个下载 url。
/alfresco/d/<d|a>/<workspace>/<store>/<nodeId>/<filename>
其中 d=direct
和 a=attached
。
attach
或direct
元素用于指示是直接在浏览器中显示流还是将其作为文件附件下载。
我想使用 Afresco REST API 下载文档。经过一些研究,我发现了这个 REST API:
/alfresco/s/api/node/content{property}/{store_type}/{store_id}/{id}
但是我不知道如何传递参数。
如果我在分享中的文档详细信息 URL 是:
http://127.0.0.1:8080/share/page/context/mine/document-details?nodeRef=workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2
在 {property}
、{store_type}
、{store_id}
和 {id}
中应该传递什么?
您可以在下方 URL.
的露天场所找到每个网络脚本 (REST API) 的详细信息http://localhost:8080/alfresco/service/index
您的 API 如下所示。
http://localhost:8080/alfresco/service/script/org/alfresco/cmis/content.get
参数说明如下
Property : Name of property which you want to retrieve.
store_type : Workspace Protocol
store_id : Store Id of node
id : Id of node.
对于这个 NodeRef
workspace://SpacesStore/7f77488a-60a0-48c3-9369-77183ccad0d2
参数的值将是:
{property}: content
{store_type}: Workspace
{store_id}: spaceStore
{id}: 7f77488a-60a0-48c3-9369-77183ccad0d2
Krutik 已经指定了与每个参数相关的详细信息。
你应该使用这个下载 url。
/alfresco/d/<d|a>/<workspace>/<store>/<nodeId>/<filename>
其中 d=direct
和 a=attached
。
attach
或direct
元素用于指示是直接在浏览器中显示流还是将其作为文件附件下载。