├── .gitignore ├── LICENSE ├── README.md ├── app.go ├── auth.go ├── certs.go ├── claims.go ├── clock.go ├── credential.go ├── credential_test.go ├── doc.go ├── options.go ├── options_test.go ├── testdata ├── service-account-appengine.json ├── service-account-computeengine.json └── token_myuid_golden.txt ├── token.go ├── token_factory.go ├── token_factory_test.go └── token_verifier.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/README.md -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/app.go -------------------------------------------------------------------------------- /auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/auth.go -------------------------------------------------------------------------------- /certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/certs.go -------------------------------------------------------------------------------- /claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/claims.go -------------------------------------------------------------------------------- /clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/clock.go -------------------------------------------------------------------------------- /credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/credential.go -------------------------------------------------------------------------------- /credential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/credential_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/doc.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/options.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/options_test.go -------------------------------------------------------------------------------- /testdata/service-account-appengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/testdata/service-account-appengine.json -------------------------------------------------------------------------------- /testdata/service-account-computeengine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/testdata/service-account-computeengine.json -------------------------------------------------------------------------------- /testdata/token_myuid_golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/testdata/token_myuid_golden.txt -------------------------------------------------------------------------------- /token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/token.go -------------------------------------------------------------------------------- /token_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/token_factory.go -------------------------------------------------------------------------------- /token_factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/token_factory_test.go -------------------------------------------------------------------------------- /token_verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuman/firebase-server-sdk-go/HEAD/token_verifier.go --------------------------------------------------------------------------------