(Delphi ActiveX) Download a Jira Attachment
Demonstrates how to download a Jira attachment to a file.
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
http: TChilkatHttp;
url: WideString;
localFilePath: WideString;
success: Integer;
begin
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
http.FollowRedirects := 1;
// Provide the username/password for authentication
http.Login := 'jira@example.com';
http.Password := 'JIRA_API_TOKEN';
// The URL for a Jira attachment has this format:
// https://your-domain.atlassian.net/secure/attachment/{attachment_id}/{attachment_filename}
url := 'https://chilkat.atlassian.net/secure/attachment/10001/starfish.jpg';
localFilePath := 'qa_output/starfish.jpg';
success := http.Download(url,localFilePath);
if (success <> 1) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Successfully downloaded Jira attachment.');
end;
|