evanshortiss / sns-mobile

Push notifications to Android, Kindle, and iOS devices easily using this module.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow title for android

0505gonzalez opened this issue · comments

Currently only messages can be sent, interface does not seem to allow titles.

Hey @0505gonzalez,

Can you explain your issue a little further?

If you want to include more than just a message String you can provide an Object containing extra parameters to use. As per the API docs:

sendMessage(endpointArn, message, callback)

Send a message to a user. The message parameter can be a String, or an Object with the formats below. The callback format is callback(err, messageId).

So you could do:

instance.sendMessage(endpointArn, {
  data: {
    title: 'Hello'
    message: 'World'
  }
}, callback)

You might need to code on the device to correctly recognise the title, I'm not 100% sure how Android will interpret the message.

Hi @0505gonzalez, I'm going to close this. Please reopen it if you feel it's not solved.