Skip to content
New issue

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

Issue with callback & promise style. #56

Open
vaibhavmagon opened this issue Jun 14, 2019 · 0 comments
Open

Issue with callback & promise style. #56

vaibhavmagon opened this issue Jun 14, 2019 · 0 comments

Comments

@vaibhavmagon
Copy link

Both of these styles to send notification (promise and callback) fail when used default syntax.

Here is better way to send:

var message = {
to: ele.token,
data: {
pn_title: ele.title,
pn_body: ele.body
},
notification: {
title: ele.title,
body: ele.body
}
};

return new Promise((resolve, reject) => {
const options = {
host: "fcm.googleapis.com",
path: "/fcm/send",
method: 'POST',
headers: {
'Authorization': process.env.authorization,
'Content-Type': 'application/json'
}
};
fcm.send(message, function(err, res) {
if(err) {
reject(err);
}
else {
resolve(res);
}
});

});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant