Hello,
I use REST API to convert PowerPoint sildes to SVG images. Since PPTX files may be pretty big I decided to use async operations, but async conversion to SVG does not seem to accept SvgExportOptions
specified in the API documentation.
I tried to add or remove different options from the request body but it looks like providing any options causes conversion to fail with an error like this:
{
httpStatusCode: 0,
message: "Deserialization of types without a parameterless constructor, a singular parameterized constructor, or a parameterized constructor annotated with 'JsonConstructorAttribute' is not supported. Type 'Aspose.Slides.Cloud.DTO.Export.ExportOptions'. Path: $.Options | LineNumber: 0 | BytePositionInLine: 84."
}
Also tried synchronous conversion of the same file with the same options and there it works well.
Please see a reproduction script attached.
aspose-debug.zip (178.1 KB)