Hi, I am using c# .net to convert PDF to DOCX. I see the file is uploaded to aspose cloud.
However, how can I get the download link? The response doesn’t contain the output link. Here’s the code as per your GIT documentation. Seems not helping or I am failing somewhere. Please advice, since this is my first time using your component. Thanks.
string fileName = file.FileName;
string format = "docx";
string destName = "Out_test_multi_pages.docx";
// Upload original document to Cloud Storage
wordsApi.UploadFile(new UploadFileRequest(file.InputStream, fname, null));
SaveAsRequest request = new SaveAsRequest(fileName, new SaveOptionsData()
{
SaveFormat = format,
FileName = destName
}, null, null, null, null, null);
SaveResponse result = wordsApi.SaveAs(request);