Releases: firebase/firebase-admin-go
Releases · firebase/firebase-admin-go
Firebase Admin Go SDK v2.0.0
- A new Cloud Storage API that facilitates accessing Google Cloud Storage buckets using the
cloud.google.com/go/storage
package.
Authentication
Firebase Admin Go SDK v1.0.2
- When deployed in the Google App Engine environment, the SDK can now leverage the utilities provided by the App Engine SDK to sign JWT tokens. As a result, it is now possible to initialize the Admin SDK in App Engine without a service account JSON file, and still be able to call
CustomToken()
andCustomTokenWithClaims()
.
Firebase Admin Go SDK v1.0.1
- Now uses the client options provided during SDK initialization to create the
http.Client
that is used to fetch public key certificates. This enables developers to use the ID token verification feature in environments like Google App Engine by providing a platform-specifichttp.Client
usingoption.WithHTTPClient()
.
Firebase Admin Go SDK v1.0.0
- Initial release of the Admin Go SDK. See Add the Firebase Admin SDK to your Server to get started.
- You can configure the SDK to use service account credentials, user credentials (refresh tokens), or Google Cloud application default credentials to access your Firebase project.
Authentication
- The initial release includes the
CustomToken()
,CustomTokenWithClaims()
, andVerifyIDToken()
functions for minting custom authentication tokens and verifying Firebase ID tokens.