Tips and Frequently Asked Questions
Download files from cloud storage service with ID or DownloadURL only
Different APIs provide different information or use different techniques. For example, unlike the Google Drive API, the OneDrive API does not provide a specific download URL for each file. However only the ID of the file is required to be able download the file, so you can create a dummy CloudItem with only the ID property assigned to be able to use the Download call. In case of Google Drive, you can use the same technique, but assign the DownloadURL property instead of the ID.
Examples:
OneDrive / SkyDrive
var i: TSkyDriveItem; begin i := TSkyDriveItem.Create(nil); i.ID := ''abc''; i.FileName := ''filename.ext''; AdvSkyDrive1.Download(i, i.FileName); i.Free;
Google Drive
var i: TGDriveItem; begin i := TGDriveItem.Create(nil); i.DownloadURL := ''abc''; i.FileName := ''filename.ext''; AdvGDrive1.Download(i, i.FileName); i.Free;
Pricing
Single Developer License
Small Team License
Site License
TMS VCL Cloud Pack
€ 175
€
75
yearly renewal
license for 1 developer
MOST POPULAR
BEST VALUE
All prices excl. VAT. Renewal price is subject to change and only valid up to 30 days after license has expired. After renewal period a discount price is offered to renew the license.