Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Last active July 22, 2020 09:35
Show Gist options
  • Save Ikhiloya/af04bf48ccc008fc34257a97255d5f5f to your computer and use it in GitHub Desktop.
Save Ikhiloya/af04bf48ccc008fc34257a97255d5f5f to your computer and use it in GitHub Desktop.
Firebase Admin Storage initialization
String bucketName = environment.getRequiredProperty("FIREBASE_BUCKET_NAME");
String projectId = environment.getRequiredProperty("FIREBASE_PROJECT_ID");
FileInputStream serviceAccount =
new FileInputStream("/home/user/Downloads/service-account-file.json");
StorageOptions.newBuilder()
.setProjectId(projectId)
.setCredentials(GoogleCredentials.fromStream(serviceAccount))
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment