How to Access alfresco custom action in python

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2017 06:39 AM
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
- Labels:
-
Alfresco Content Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2017 11:11 AM
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.
