Skip to content

Instantly share code, notes, and snippets.

@hiranya911
Created July 22, 2018 22:54
Show Gist options
  • Save hiranya911/ac3807273ee7b727430a4da9c5a54afd to your computer and use it in GitHub Desktop.
Save hiranya911/ac3807273ee7b727430a4da9c5a54afd to your computer and use it in GitHub Desktop.
const admin = require('firebase-admin');
admin.initializeApp();
admin.auth().createCustomToken('testuid').then((token) => {
console.log('Custom token created:', token);
}).catch((err) => {
console.log('Error:', err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment