Skip to content

Instantly share code, notes, and snippets.

@jotapeluiz
Created March 22, 2019 03:58
Show Gist options
  • Select an option

  • Save jotapeluiz/44d17b917a2bc827a456e4314f63df5e to your computer and use it in GitHub Desktop.

Select an option

Save jotapeluiz/44d17b917a2bc827a456e4314f63df5e to your computer and use it in GitHub Desktop.
const messaging = firebase.messaging();
function requestToken() {
messaging.getToken().then(function(token) {
console.log("Token:", token);
}).catch(function(error) {
console.error("Um erro ocorreu ao recuperar o token:", error);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment