Alfresco REST API for downloading document

后端 未结 2 1714
忘了有多久
忘了有多久 2021-01-14 14:44

I want to use the Afresco REST API to download a document. After some research I find out this REST API:

/alfresco/s/api/node/content{property}/{store_type}/         


        
2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-14 15:35

    You can find details of every web-script (REST API) in alfresco on below URL.

    http://localhost:8080/alfresco/service/index
    

    For your API it is given as below.

    http://localhost:8080/alfresco/service/script/org/alfresco/cmis/content.get
    

    Description of parameter is as below.

    Property   : Name of property which you want to retrieve.
    store_type : Workspace Protocol
    store_id   : Store Id of node
    id         : Id of node.
    

提交回复
热议问题