You are providing AWS consulting services for a company developing a new mobile
application that will be leveraging Amazon SNS Mobile Push for push notifications. In order
to send direct notification messages to individual devices each device registration identifier
or token needs to be registered with SNS; however the developers are not sure of the best
way to do this. You advise them to:
A.
Call the CreatePlatformEndPoint API function to register multiple device tokens.
B.
Bulk upload the device tokens contained in a CSV file via the AWS Management
Console.
C.
Let the push notification service (e.g. Amazon Device Messaging) handle the registration.
D.
Implement a token vending service to handle the registration.
I think answer should be A
A
correct answer is
Call the CreatePlatformEndPoint API function to register multiple device tokens.
http://docs.aws.amazon.com/sns/latest/dg/mobile-push-send-devicetoken.html
When migrating several tokens, it is recommended to use the CreatePlatformEndpoint API.
Correct answer is C
Correct answer is A – see AK’s link above
Amazon Device Messaging (ADM) is for Kindle Fire with ADM already installed on it:
http://docs.aws.amazon.com/sns/latest/dg/mobile-push-adm.html
A
Answer can either be A or B. Except for B the CSV file cannot be larger than 2 MB, if its above, then should use A.
The question is unclear about the number of users, but assuming that one don’t know the size of the users, A should be a safer answer.
Answer: A. Call the CreatePlatformEndPoint API function to register multiple device tokens
“Upload several tokens using the CreatePlatformEndpoint API”
Note: “Migrate existing tokens from a CSV file to AWS using the AWS Management Console”. CSV is not a valid solution due to the question stating a ‘new mobile app’. Since the app is new, the tokens do not exist yet. Thus, they cannot be migrated via CSV.
http://docs.aws.amazon.com/sns/latest/dg/mobile-push-send-devicetoken.html
A
A
C
A
below are few optionts to register tokens
Manually add a single token to AWS using the AWS Management Console
Migrate existing tokens from a CSV file to AWS using the AWS Management Console
Upload several tokens using the CreatePlatformEndpoint API
Register tokens from devices that will install your apps in the future
A