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 Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
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
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
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Delphi DLL) OneDrive -- Download Text File to Memory

Downloads a text file (such as XML, JSON, plain-text, HTML, etc.) into a StringBuilder object.

Note: This example requires Chilkat v9.5.0.68 or greater.

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, StringBuilder, Http;

...

procedure TForm1.Button1Click(Sender: TObject);
var
http: HCkHttp;
sbXml: HCkStringBuilder;
expectedCharset: PWideChar;
url: PWideChar;
success: Boolean;

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

http := CkHttp_Create();

// Use your previously obtained access token here:
// See the following examples for getting an access token:
//    Get Microsoft Graph OAuth2 Access Token (Azure AD v2.0 Endpoint).
//    Get Microsoft Graph OAuth2 Access Token (Azure AD Endpoint).
//    Refresh Access Token (Azure AD v2.0 Endpoint).
//    Refresh Access Token (Azure AD Endpoint).

// (Make sure your token was obtained with the FilesRead or Files.ReadWrite scope.)
CkHttp_putAuthToken(http,'MICROSOFT_GRAPH_ACCESS_TOKEN');

// Sends the following GET request:
// GET https://graph.microsoft.com/v1.0/me/drive/root:/{item-path}:/content

// Make sure to automatically follow redirects
CkHttp_putFollowRedirects(http,True);

// This example will download /Misc/hamlet.xml
CkHttp_SetUrlVar(http,'item_path','Misc/hamlet.xml');

sbXml := CkStringBuilder_Create();
expectedCharset := 'utf-8';
url := 'https://graph.microsoft.com/v1.0/me/drive/root:/{$item_path}:/content';
success := CkHttp_DownloadSb(http,url,expectedCharset,sbXml);
if (CkHttp_getLastMethodSuccess(http) <> True) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

// If the response status code was not 200, then it failed.
if (CkHttp_getLastStatus(http) <> 200) then
  begin
    Memo1.Lines.Add('Response Status Code = ' + IntToStr(CkHttp_getLastStatus(http)));
    Memo1.Lines.Add('Failed.');
    Exit;
  end;

// If we got here, then the file was successfully downloaded.
Memo1.Lines.Add('Download from OneDrive successful.');
Memo1.Lines.Add('The file is contained in sbXml.');

CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbXml);

end;

 

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