firebase_admin 0.3.0 firebase_admin: ^0.3.0 copied to clipboard
A port of the Firebase admin sdk to pure, idiomatic Dart code
import 'package:firebase_admin/firebase_admin.dart';
void main() async {
// applicationDefault() will look for credentials in the following locations:
// * the service-account.json file in the package main directory
// * the env variable GOOGLE_APPLICATION_CREDENTIALS
// * a configuration file, specific for this library, stored in the user's home directory
// * gcloud's application default credentials
// * credentials from the firebase tools
var credential = Credentials.applicationDefault();
// when no credentials found, login using openid
// the credentials are stored on disk for later use
// either set the parameters clientId and clientSecret of the login method or
// set the env variable FIREBASE_CLIENT_ID and FIREBASE_CLIENT_SECRET
credential ??= await Credentials.login();
var projectId = 'some-project';
// create an app
var app = FirebaseAdmin.instance.initializeApp(AppOptions(
credential: credential,
projectId: projectId,
storageBucket: '$projectId.appspot.com'));
try {
// get a user by email
var v = await app.auth().getUserByEmail('jane@doe.com');
print(v.toJson());
} on FirebaseException catch (e) {
print(e.message);
}
await for (var v in app.storage().bucket().list()) {
print(v.name);
}
}