dart_firebase_admin
dart_firebase_admin copied to clipboard
🔥 A Firebase Admin SDK for Dart.
Hello, thank you for this package, this is nice to have it for Dart :) When testing sending message to iOS, I get this error: FirebaseMessagingAdminException: messaging/invalidargument: One or more...
This pull request includes changes to the `Query` class in the `packages/dart_firebase_admin/lib/src/google_cloud_firestore/reference.dart` file. The changes modify the way the `orderBy` method is used in the examples provided in the comments....
I tried this lib for a couple of collections which all worked fine. On a given collection however I get this error: ERROR - 2024-03-30 15:11:12.058685 POST /apps/execute_automation Error thrown...
When i send the token back to the client and trie the LoginWithToken method I get: error: [firebase_auth/invalid-custom-token] The custom token format is incorrect. Please check the documentation. If i...
Version 0.3.0 I know it's an early build, so just drawing attention to a blocking feature for wider adoption. We use `verifyIdToken` to verify requests from clients before performing requests...
Hello! This update enables preservation of nanoseconds below 1000, addressing the issue where fractions of milliseconds were being discarded. Thanks!
https://github.com/invertase/dart_firebase_admin/issues/22 @rrousselGit looking for some feedback on this. If y'all agree on the direction I will add tests. - I cut down on the amount of `MessagingClientErrorCode`. Felt like some...
Fixes #21. This might a be missed implementation, when sending `GoogleCloudIdentitytoolkitV1SetAccountInfoRequest` localId (which is basically the UID) was not set to the passed UID. Hence caused #21. Tested locally, please...
## Background Create custom token here: ```dart final adminApp = FirebaseAdminApp.initializeApp( 'project-id', Credential.fromServiceAccountParams( clientId: 'client-id', privateKey: 'private-key', email: 'email', ), ); final auth = Auth(adminApp); final customToken = await auth.createCustomToken('some-user-id');...
I have issue updating the user data based on user's bid. First, I retrieve the user's data by email, and I get what I expect. Then, I used the uid...