Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created October 13, 2019 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/e915c03b5d5f86facc1e58acf5be05ee to your computer and use it in GitHub Desktop.
Save luandevpro/e915c03b5d5f86facc1e58acf5be05ee to your computer and use it in GitHub Desktop.
import withFirebase from '../../../middlewares/withFirebase';
async function handle(req, res) {
const token = req.cookies.token || req.headers.authorization.split(' ')[1];
if (token) {
req.admin
.auth()
.verifyIdToken(token)
.then((decodedToken) => {
console.log(decodedToken);
})
.catch((err) => {
console.log(err);
});
res.status(200).json({ token });
} else {
res.status(400).json({ message: 'Not authorized! Go back!' });
}
}
export default withFirebase(handle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment