googleapis 13.1.0 copy "googleapis: ^13.1.0" to clipboard
googleapis: ^13.1.0 copied to clipboard

Auto-generated client libraries for accessing Google APIs described through the API discovery service.

example/main.dart

// This example demonstrates usage for a Dart command line application.
//
// For details of how to use this package in Flutter, see
// https://flutter.dev/docs/development/data-and-backend/google-apis

import 'package:googleapis/storage/v1.dart';
import 'package:googleapis_auth/auth_io.dart';

Future<void> main() async {
  final httpClient = await clientViaApplicationDefaultCredentials(scopes: [
    StorageApi.devstorageReadOnlyScope,
  ]);
  try {
    final storage = StorageApi(httpClient);

    final buckets = await storage.buckets.list('dart-on-cloud');
    final items = buckets.items!;
    print('Received ${items.length} bucket names:');
    for (var file in items) {
      print(file.name);
    }
  } finally {
    httpClient.close();
  }
}
934
likes
140
pub points
99%
popularity

Publisher

verified publishergoogle.dev

Auto-generated client libraries for accessing Google APIs described through the API discovery service.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

_discoveryapis_commons, http

More

Packages that depend on googleapis