-
Notifications
You must be signed in to change notification settings - Fork 3
Retrieve Task Information
asposeforcloud edited this page Jun 23, 2014
·
1 revision
This example allows you to retrieve a task information using Aspose.Tasks for Cloud API in your applications.
The following Aspose.Tasks for Cloud REST API resource has been used in the examples: tasks
- Set the base product URI, App SID, App Key and output location.
- Upload the input file to aspose cloud storage.
- Create an object of the tasks class.
Following is the complete code.
var AsposeCloud = require('../lib/aspose-cloud'); var AsposeStorage = require('../lib/aspose-storage'); var AsposeTasks = require('../lib/aspose-tasks'); var AppSID = '3395ba5c-****'; var AppKey = 'e8dd1b027****'; var BaseProductUri = 'http://api.aspose.com/v1.1/'; var config = {'appSID':AppSID,'appKey':AppKey,'baseURI':BaseProductUri}; var aspose = new AsposeCloud(config); # Create object of tasks var tasks = aspose.Tasks(); tasks.getTask('path/to/Project.mmp',1,function(data){ console.log(data); });
- Working with Aspose.Storage
- Working with Aspose.Barcode
- Working with Aspose.Ocr
- Working with Aspose.Pdf
- Working with Aspose.Slides
- Working with Aspose.Cells
- Working with Aspose.Words
- Working with Aspose.Tasks
- Working with project document file formats
- Working with Project Documents
- Working with Tasks
- Working with Task Links
- Working With Resources
- Working with Assignments
- Working with Calendars
- Working with Outline Codes
- Working with Aspose.Email
- Working with Email file formats using Aspose.Email