I'm kind of new to firebase security, and web development in general, but I am generating JWT's on the server-side of my Rails app. However, to pass them to firebase, it seems I have to pass the token (which is stored on the users table in the db) in a view with this Javascript code:
var ref = new Firebase('https://mysite.firebaseio.com/');
ref.auth('<%= @user.auth_token %>');
Is this how you are supposed to handle auth tokens? I thought it might defeat the point, since the auth tokens are then viewable to the users from the page source.
The
auth token
can also be viewed from theFirebase REST APIs
explained here.The query parameter
auth
value is also available, if someone traces the http packets someway, like using wireshark, but I guess this is the way it is to be used.JWT
auth
token is just a string.But these
JWTs
can be generated with specific expiration time using Token Generation Libraries, by default expiry time is 24 hours.Also firebase provides ways to specify Definite
Rules
to access the data in firebase.See HereAlso it provides
Data Validation
to keep the data consistent. See Here