Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created October 13, 2019 12:34
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/82581387f22f186c16f36224966031c1 to your computer and use it in GitHub Desktop.
Save luandevpro/82581387f22f186c16f36224966031c1 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;
if (token) {
console.log(token, 'token');
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