onedrive_api 0.2.0 copy "onedrive_api: ^0.2.0" to clipboard
onedrive_api: ^0.2.0 copied to clipboard

OneDrive API module for Flutter and Dart.

OneDrive API #

pub package

OneDrive API allows easy interaction with the files APIs of Microsoft Graph. It follows the OneDrive API module for Node.js.

This library is exclusively for the files APIs. For other Microsoft APIs, check out microsoft_graph_api.

Note: Using this library requires an access token.

Features #

Implemented #

  • ✅ Create Folders
  • ✅ Delete Files and Folders

Planned #

  • ❌ Create Shareable Links
  • ❌ Download Files and Folders
  • ❌ Fetch Metadata
  • ❌ List Files and Folders
  • ❌ Retrieve File Preview URLs
  • ❌ Retrieve File Thumbnails
  • ❌ Update Metadata
  • ❌ Upload Files

Usage #

Creating a Folder #

import 'package:onedrive_api/onedrive_api.dart';

void main() async {
  FolderParams folderParams = FolderParams();
  folderParams.accessToken = "ACCESS_TOKEN";
  folderParams.name = "Test Folder";

  Response response = await createFolder(folderParams);
  if (response.statusCode != 201) {
    throw Exception(response.errorMsg);
  } else {
    print("Item Created: ${response.itemId}");
  }
}

copied to clipboard

Delete an Item #

import 'package:onedrive_api/onedrive_api.dart';

void main() async {
  ItemParams itemParams = ItemParams();
  itemParams.accessToken = "ACCESS_TOKEN";
  itemParams.itemId = "ITEM_ID";

  Response response = await delete(itemParams);
  if (response.statusCode != 204) {
    throw Exception(response.errorMsg);
  } else {
    print("Item Deleted: ${itemParams.itemId}");
  }
}

copied to clipboard
3
likes
140
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

2024.08.18 - 2025.03.02

OneDrive API module for Flutter and Dart.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

dotenv, http

More

Packages that depend on onedrive_api