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
Hi! I was using this library and it's great. I'm sending notifications like this
const notifications = await usuarios.map(u => { return { login_id: u.id, title: notificacion.titulo, content: notificacion.mensaje, screen: 'home' } }) enviado = http.post('/post_notification_json', JSON.stringify({ events: notifications })) .then(() => true) .catch((err) => { logger.info('No se pudo enviar la notificacion: ' + err.message) return false })
const notifications = await usuarios.map(u => { return { login_id: u.id, title: notificacion.titulo, content: notificacion.mensaje, screen: 'home' } })
enviado = http.post('/post_notification_json', JSON.stringify({ events: notifications })) .then(() => true) .catch((err) => { logger.info('No se pudo enviar la notificacion: ' + err.message) return false })
The question is, is there any way to add custom params, like 'pairs' param on post_events_json endpoint?
Thank you so much
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! I was using this library and it's great.
I'm sending notifications like this
The question is, is there any way to add custom params, like 'pairs' param on post_events_json endpoint?
Thank you so much
The text was updated successfully, but these errors were encountered: