We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firebase messaging error - Uncaught (in promise) DOMException: Registration failed - push service error
The error appears on getToken() in requestPermission @ the line "app.messaging().getToken().then(function(token) {"
firebase-messaging.html function refreshToken(app) { var state = stateMap[app.name];
app.messaging().getToken().then(function(token) { applyAll(app, '_setToken', token); applyAll(app, '_setStatusKnown', true); return token; }, function(err) { applyAll(app, '_setToken', null); applyAll(app, '_setStatusKnown', true); applyAll(app, 'fire', 'error', err); throw err; });
}
Source code: https://github.com/vinvantest/git_issue_firebase_login
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Firebase messaging error - Uncaught (in promise) DOMException: Registration failed - push service error
The error appears on getToken() in requestPermission @ the line "app.messaging().getToken().then(function(token) {"
firebase-messaging.html
function refreshToken(app) {
var state = stateMap[app.name];
}
Source code: https://github.com/vinvantest/git_issue_firebase_login
The text was updated successfully, but these errors were encountered: