How to Access alfresco custom action in python

cancel
Showing results for 
Search instead for 
Did you mean: 
kumawatprem
Member II

How to Access alfresco custom action in python

Hi, I have create one custom action in alfresco using Java Code for merging multiple images into one pdf. I want to access this custom action in Python application and I am using cmis browser binding for establish connection with alfresco.

Please give me any ideas for how can i access this custom action in python.

Thanks in advance

1 Reply
jpotts
Professional

Re: How to Access alfresco custom action in python

Write a web script. The controller of your web script will invoke your action using the Action Service. The web script exposes a RESTful endpoint which you will call from Python.

If you need help learning how to write a web script, take a look at this tutorial. If you need help hitting RESTful APIs with Python, take a look at this.