Skip to content

Instantly share code, notes, and snippets.

@tmarshall
Last active October 30, 2022 06:12
Show Gist options
  • Save tmarshall/6149ed2475f964cda3f5 to your computer and use it in GitHub Desktop.
Save tmarshall/6149ed2475f964cda3f5 to your computer and use it in GitHub Desktop.
aws-sdk sns example, in Node.js
var AWS = require('aws-sdk');
AWS.config.update({
accessKeyId: '{AWS_KEY}',
secretAccessKey: '{AWS_SECRET}',
region: '{SNS_REGION}'
});
var sns = new AWS.SNS();
sns.createPlatformEndpoint({
PlatformApplicationArn: '{APPLICATION_ARN}',
Token: '{DEVICE_TOKEN}'
}, function(err, data) {
if (err) {
console.log(err.stack);
return;
}
var endpointArn = data.EndpointArn;
var payload = {
default: 'Hello World',
APNS: {
aps: {
alert: 'Hello World',
sound: 'default',
badge: 1
}
}
};
// first have to stringify the inner APNS object...
payload.APNS = JSON.stringify(payload.APNS);
// then have to stringify the entire message payload
payload = JSON.stringify(payload);
console.log('sending push');
sns.publish({
Message: payload,
MessageStructure: 'json',
TargetArn: endpointArn
}, function(err, data) {
if (err) {
console.log(err.stack);
return;
}
console.log('push sent');
console.log(data);
});
});
@ehorodyski
Copy link

Anything on how to set up MessageAttributes? I need to hook TTL in but have no idea how it would be supported...I guess a JSON that's stringified?

@Bratkartoffl
Copy link

@robomotic did you get this running?
@X-Strange your links returns a 404. Could you please post your solution again?

@Bratkartoffl
Copy link

Found a Solution. Just use brackets.

"content-available" : 1

@thenb
Copy link

thenb commented Sep 3, 2017

perfect!! works like a charm!!
thanks dude

@NguyenTungs
Copy link

Thanks @tmarshall.
I think, This is for iOS device, do u? So android, how can build send notification for android. Please!

@saurabhschauhan
Copy link

How can I add my additional data to the notification?

@jitendra-kr
Copy link

Hi, i am used this working fine. Is there a way to send additional data into payload?

@Sojer23
Copy link

Sojer23 commented Apr 17, 2019

Thanks!

@lucasrleandro
Copy link

Thanks man!!!!!!!!!
Helped a lot!!!!
The AWS Documentation was not clear.

@mahees
Copy link

mahees commented Dec 20, 2019

thank you!!! i kept doing TopicARN vs TargetArn sigh.

@malikid
Copy link

malikid commented Dec 24, 2019

Code for Android if you're using FCM:

var payload = {
    default: 'Hello World',
    GCM: {
        notification: {
            title: 'Hello World',
            body: 'Notification Body'
            // other configs can be put here
        }
    },
    // APNS: {
    //  aps: {
    //    alert: 'Hello World',
    //    sound: 'default',
    //    badge: 1
    //  }
    // }
  };

  // first have to stringify the inner GCM / APNS object...
  payload.GCM = JSON.stringify(payload.GCM);
  // payload.APNS = JSON.stringify(payload.APNS);
  // then have to stringify the entire message payload
  payload = JSON.stringify(payload);

@MichaelHuy
Copy link

MichaelHuy commented Jan 8, 2020

Hi pro,
I am facing an Android app with react native using react-native-push-notification. I can use sns console to trigger sending push Notification to Android device
{ "GCM": "{ \"data\": { \"message\": \"Sample message for Android endpoints\" } }" }
But when using sns publish with the code above, I did not receive Push Notification on my device...
Any advice?
Thank you.

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@MichaelHuy
Copy link

MichaelHuy commented Jan 8, 2020

Try using the payload like this: var payload = { default: "something", GCM: { notification: { message: "E", payload: "F", title: "title", body: "body" } } }; payload.GCM = JSON.stringify(payload.GCM); payload = JSON.stringify(payload); Em ter, 7 de jan de 2020 23:52, Huy Le notifications@github.com escreveu:

Hi pro, I am facing on Android app with react native using react-native-push-notification. I can use sns console to trigger sending push Notification to Android device { "GCM": "{ "data": { "message": "Sample message for Android endpoints" } }" } But when using sns publish with the code above, I did not receive Push Notification on my device... Any advice? Thank you. — You are receiving this because you commented. Reply to this email directly, view it on GitHub https://gist.github.com/6149ed2475f964cda3f5?email_source=notifications&email_token=AKDCZFIHPPNCTU3ZQKDH4ALQ4U5YFA5CNFSM4IHYIJGKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAF7CTC#gistcomment-3130673, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKDCZFJSRQ36WLQZFOVL3JLQ4U5YFANCNFSM4IHYIJGA .

Thanks for your reply. I tried with your payload but still not receive a push notification to my android device.

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@MichaelHuy
Copy link

Via SNS console the push is received? Em qua, 8 de jan de 2020 00:18, Huy Le notifications@github.com escreveu:

@lucas https://github.com/lucas Try using the payload like this: var payload = { default: "something", GCM: { notification: { message: "E", payload: "F", title: "title", body: "body" } } }; payload.GCM = JSON.stringify(payload.GCM); payload = JSON.stringify(payload); Em ter, 7 de jan de 2020 23:52, Huy Le @.*** escreveu: … <#m_7011924555103773334_> Hi pro, I am facing on Android app with react native using react-native-push-notification. I can use sns console to trigger sending push Notification to Android device { "GCM": "{ "data": { "message": "Sample message for Android endpoints" } }" } But when using sns publish with the code above, I did not receive Push Notification on my device... Any advice? Thank you. — You are receiving this because you commented. Reply to this email directly, view it on GitHub https://gist.github.com/6149ed2475f964cda3f5?email_source=notifications&email_token=AKDCZFIHPPNCTU3ZQKDH4ALQ4U5YFA5CNFSM4IHYIJGKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAF7CTC#gistcomment-3130673, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKDCZFJSRQ36WLQZFOVL3JLQ4U5YFANCNFSM4IHYIJGA . Thanks for your reply. I tried with your payload but still not receive a push notification to my android device. — You are receiving this because you commented. Reply to this email directly, view it on GitHub https://gist.github.com/6149ed2475f964cda3f5?email_source=notifications&email_token=AKDCZFKBTNR4LUADUBRYTE3Q4VAZRA5CNFSM4IHYIJGKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAF7CUE#gistcomment-3130690, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKDCZFNNORXQFJZEYYQQQS3Q4VAZRANCNFSM4IHYIJGA .

Yes. Very weird.

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@MichaelHuy
Copy link

Sure. iOS works well.

@MichaelHuy
Copy link

image
sent push successfully, but not show anything on my device.

@MichaelHuy
Copy link

MichaelHuy commented Jan 8, 2020

Oh... Really I received a push notification from code trigger. But too long. maybe random. :( . What happened with Android push with amazon sns

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@MichaelHuy
Copy link

MichaelHuy commented Jan 8, 2020

Thanks @lucasrleandro. Good night

@lucasrleandro
Copy link

lucasrleandro commented Jan 8, 2020 via email

@MichaelHuy
Copy link

Yes, Lucas. It is working now. Root cause: my android app crash then it will not receive Push Notification.
Thanks

@lucasrleandro
Copy link

lucasrleandro commented Jan 9, 2020 via email

@sankar9659
Copy link

getting this error 'User: arn:aws:iam::***********:user/******* is not authorized to perform: SNS:Publish on resource:'

@pdkproitf
Copy link

MessageStructure seems does not work.
When I add MessageStructure to publish parameters, it does not send a notification to the subscriber.

@iammateus
Copy link

Very helpful, thank you

@scastrec
Copy link

Looks like there is some stuff to add.
The platformEndpointArn can be created but inactive.
I had a lot of trouble with it and currently working on it.
AWS doc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment