(DataFlex) Yousign: Download File
Downloads a previously uploaded Yousign file. For more information, see https://dev.yousign.com/?version=latest#490b263d-a038-4871-acab-5ab73481fb2d
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
String sDownloadUrl
String sLocalFilePath
String sTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Adds the "Authorization: Bearer YOUR_API_KEY" header.
Set ComAuthToken Of hoHttp To "YOUR_API_KEY"
Move "https://staging-api.yousign.com/files/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/download?alt=media" To sDownloadUrl
Move "qa_output/x.pdf" To sLocalFilePath
Get ComDownload Of hoHttp sDownloadUrl sLocalFilePath To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Showln "The PDF file is downloaded..."
End_Procedure
|