Sample code for 30+ languages & platforms
Dart

Download a Jira Attachment

See more Jira Examples

Demonstrates how to download a Jira attachment to a file.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example requires the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  http.followRedirects = true;

  // 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}

  final url = 'https://chilkat.atlassian.net/secure/attachment/10001/starfish.jpg';
  final localFilePath = 'qa_output/starfish.jpg';
  try {
    http.download(url, localFilePath);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('Successfully downloaded Jira attachment.');
}