Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Delphi DLL Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Delphi DLL) Dropbox File Streaming Upload

Upload a file to Drobox using a file stream. This example can upload files up to 150MB. Larger files must be uploaded with an upload session (upload_session/start).

Chilkat for Delphi Downloads

Chilkat non-ActiveX DLL for Delphi

Chilkat ActiveX DLL for Delphi

* The examples here use the non-ActiveX DLL.

uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, CkDateTime, Rest, DtObj, JsonObject, Stream;

...

procedure TForm1.Button1Click(Sender: TObject);
var
rest: HCkRest;
success: Boolean;
json: HCkJsonObject;
fileStream: HCkStream;
responseStr: PWideChar;
jsonResp: HCkJsonObject;
size: Integer;
rev: PWideChar;
clientModified: PWideChar;
ckdt: HCkDateTime;
bLocalTime: Boolean;
dt: HCkDtObj;

begin
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// A Dropbox access token should have been previously obtained.
// Dropbox access tokens do not expire.
// See Dropbox Access Token.

rest := CkRest_Create();

// Connect to Dropbox
success := CkRest_Connect(rest,'content.dropboxapi.com',443,True,True);
if (success <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;

// Add request headers.
CkRest_AddHeader(rest,'Content-Type','application/octet-stream');
CkRest_AddHeader(rest,'Authorization','Bearer DROPBOX_ACCESS_TOKEN');

// The upload "parameters" contained in JSON passed in an HTTP request header.
// This is the JSON to be added in this example:
// { 
//    "path": "/Homework/lit/hamlet.xml",
//    "mode": "add",
//    "autorename": true,
//    "mute": false
// }

json := CkJsonObject_Create();
CkJsonObject_AppendString(json,'path','/Homework/lit/hamlet.xml');
CkJsonObject_AppendString(json,'mode','add');
CkJsonObject_AppendBool(json,'autorename',True);
CkJsonObject_AppendBool(json,'mute',False);
CkRest_AddHeader(rest,'Dropbox-API-Arg',CkJsonObject__emit(json));

// Almost ready to go...
// Let's setup a file stream to point to a file.
fileStream := CkStream_Create();
CkStream_putSourceFile(fileStream,'qa_data/xml/hamlet.xml');

// Do the upload.  The URL is https://content.dropboxapi.com/2/files/upload.
// We already connected to content.dropboxapi.com using TLS (i.e. HTTPS),
// so now we only need to specify the path "/2/files/upload".

// Note: The file is streamed directly from disk.  (The entire
// file will not be loaded into memory.)
responseStr := CkRest__fullRequestStream(rest,'POST','/2/files/upload',fileStream);
if (CkRest_getLastMethodSuccess(rest) <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;

// When successful, Dropbox responds with a 200 response code.
if (CkRest_getResponseStatusCode(rest) <> 200) then
  begin
    // Examine the request/response to see what happened.
    Memo1.Lines.Add('response status code = ' + IntToStr(CkRest_getResponseStatusCode(rest)));
    Memo1.Lines.Add('response status text = ' + CkRest__responseStatusText(rest));
    Memo1.Lines.Add('response header: ' + CkRest__responseHeader(rest));
    Memo1.Lines.Add('response body (if any): ' + responseStr);
    Memo1.Lines.Add('---');
    Memo1.Lines.Add('LastRequestStartLine: ' + CkRest__lastRequestStartLine(rest));
    Memo1.Lines.Add('LastRequestHeader: ' + CkRest__lastRequestHeader(rest));
    Exit;
  end;

// The response is JSON.
jsonResp := CkJsonObject_Create();
CkJsonObject_putEmitCompact(jsonResp,False);
CkJsonObject_Load(jsonResp,responseStr);

// Show the JSON response.
Memo1.Lines.Add(CkJsonObject__emit(jsonResp));

// Returns JSON that looks like this:
// { 
//   "name": "hamlet.xml",
//   "path_lower": "/homework/lit/hamlet.xml",
//   "path_display": "/Homework/lit/hamlet.xml",
//   "id": "id:74FkdeNuyKAAAAAAAAAAAQ",
//   "client_modified": "2016-06-02T23:19:00Z",
//   "server_modified": "2016-06-02T23:19:00Z",
//   "rev": "9482db15f",
//   "size": 279658
// }

// Sample code to get data from the JSON response:
size := CkJsonObject_IntOf(jsonResp,'size');
Memo1.Lines.Add('size = ' + IntToStr(size));

rev := CkJsonObject__stringOf(jsonResp,'rev');
Memo1.Lines.Add('rev = ' + rev);

clientModified := CkJsonObject__stringOf(jsonResp,'client_modified');
ckdt := CkDateTime_Create();
CkDateTime_SetFromTimestamp(ckdt,clientModified);
bLocalTime := True;
dt := CkDateTime_GetDtObj(ckdt,bLocalTime);
Memo1.Lines.Add(IntToStr(CkDtObj_getDay(dt)) + '/' + IntToStr(CkDtObj_getMonth(dt)) + '/' + IntToStr(CkDtObj_getYear(dt)) + ' '
     + IntToStr(CkDtObj_getHour(dt)) + ':' + IntToStr(CkDtObj_getMinute(dt)));
CkDtObj_Dispose(dt);

CkRest_Dispose(rest);
CkJsonObject_Dispose(json);
CkStream_Dispose(fileStream);
CkJsonObject_Dispose(jsonResp);
CkDateTime_Dispose(ckdt);

end;

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.