-
Star
(135)
You must be signed in to star a gist -
Fork
(87)
You must be signed in to fork a gist
-
-
Save tmarshall/6149ed2475f964cda3f5 to your computer and use it in GitHub Desktop.
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); | |
}); | |
}); |
@robomotic did you get this running?
@X-Strange your links returns a 404. Could you please post your solution again?
Found a Solution. Just use brackets.
"content-available" : 1
perfect!! works like a charm!!
thanks dude
Thanks @tmarshall.
I think, This is for iOS device, do u? So android, how can build send notification for android. Please!
How can I add my additional data to the notification?
Hi, i am used this working fine. Is there a way to send additional data into payload?
Thanks!
Thanks man!!!!!!!!!
Helped a lot!!!!
The AWS Documentation was not clear.
thank you!!! i kept doing TopicARN vs TargetArn sigh.
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);
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.
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 [email protected] 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.
Via SNS console the push is received? Em qua, 8 de jan de 2020 00:18, Huy Le [email protected] 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.
Sure. iOS works well.
Oh... Really I received a push notification from code trigger. But too long. maybe random. :( . What happened with Android push with amazon sns
Thanks @lucasrleandro. Good night
Yes, Lucas. It is working now. Root cause: my android app crash then it will not receive Push Notification.
Thanks
getting this error 'User: arn:aws:iam::***********:user/******* is not authorized to perform: SNS:Publish on resource:'
MessageStructure
seems does not work.
When I add MessageStructure
to publish parameters, it does not send a notification to the subscriber.
Very helpful, thank you
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
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?