auth-firebase-jwt
Firebase JWT Auth Strategy
randomstate/auth-firebase-jwt
provides a Firebase JWT strategy for randomstate/auth
Installation
Add this to your application's shard.yml
:
dependencies:
auth_firebase_jwt:
github: randomstate/auth-firebase-jwt
Usage
require "auth_firebase_jwt"
### Instantiation
strategy = Auth::Strategies::Firebase::JWT.new "{PROJECT_ID}" # PROJECT_ID is your Firebase Project ID
manager = Auth::Manager.new
manager.use :jwt, strategy
Converting FirebaseUser to your User object
strategy.when_converting do | firebase_user |
my_user = User.new
my_user.id = firebase_user.user_id
my_user.email = firebase_user.email
my_user # must return your own user object
end
The following properties are available on the FirebaseUser object
user_id: String,
auth_time: Time,
display_name: (String | Nil),
email: (String | Nil),
email_verified: (Bool | Nil),
phone_number: (String | Nil),
Contributing
- Fork it ( https://github.com/randomstate/auth-firebase-jwt/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- cimrie Connor Imrie - creator, maintainer
Repository
auth-firebase-jwt
Owner
Statistic
- 0
- 0
- 0
- 0
- 2
- over 6 years ago
- March 21, 2018
License
MIT License
Links
Synced at
Thu, 07 Nov 2024 16:14:13 GMT
Languages