Amazon SNS Mobile Push to sub set of devices -
is possible push messages subset of app installs sns.
when publishing topic default subscribers notification.
as mention, when publishing topic, (valid) endpoints subscribed receive message. there's no conditional operations here - it's or nothing.
your options sending smaller subset are:
maintain number of sns topics group users way want. requires subscribing , unsubscribing endpoints topics own code.
you can send directly specific endpoints own code, using publish api command. specify endpointarn
targetarn
property, , not specify valuetopicarn
property. need manage these groupings of endpoints in code , loop through each desired recipient , publish endpoint.
Comments
Post a Comment