FCM with AWS SNS

AndroidAmazon Web-ServicesGoogle Cloud-MessagingAmazon SnsFirebase Cloud-Messaging

Android Problem Overview


I am using AWS resources for my android project, I am planning to add push notification service for my project with AWS SNS.there are few questions bothering me much. I did not find any questions regarding these, except one or two but with unclear explanations.

1.Does AWS support FCM? SNS work with GCM. But Google recommends to use FCM instead of GCM. I did not find AWS supporting FCM.

2.Do AWS store messages (or data) into their databases even after sending push notifications?

3.I tried putting FCM api key in SNS application platform, it is showing invalid parameters why?

Android Solutions


Solution 1 - Android

FCM is backwards compatible with GCM. The steps for setting up FCM on AWS are identical to the GCM set up procedure and (at least for the moment) FCM works transparently with GCM and SNS with respect to server-side configuration.

However, if you are sending data payloads to the Android device they will not be processed unless you implement a client side service that extends FirebaseMessagingService. The default JSON message generator in the AWS console sends data messages, which will be ignored by your app unless the aforementioned service is implemented. To get around this for initial testing you can provide a custom notification payload which will be received by your device (as long as your app is not in the foreground)

There are GCM-FCM migration instructions provided by Google however the changes you need to make are predominantly on the App side.

The steps you need to follow to test GCM/FCM on your app with SNS are:

  1. Create a Platform Application in SNS, selecting Google Cloud Messaging (GCM) as the Push Notification Platform, and providing your Server API key in the API key field.
  2. Select the Platform Application and click the Create platform endpoint button.
  3. Provide the InstanceID (Device Token) generated by your app. You must extend the FirebaseInstanceIDService and override the onTokenRefresh method to see this within your Android App. Once you have done this, uninstall and reinstall your app and your token should be printed to the Debug console in Android Studio on first boot.
  4. Click the Add endpoint button.
  5. Click on the ARN link for your platform application.
  6. Select the newly created Endpoint for your device and click the Publish to endpoint button.
  7. Select the JSON Message Format, and click the JSON message generator button.
  8. Enter a test message and click the Generate JSON button
  9. Now comes the "gotcha part".

The message that is generated by SNS will be of the form:

{
"GCM": "{ \"data\": { \"message\": \"test message\" } }"
}

As we mentioned earlier, data payloads will be ignored if no service to receive them has been implemented. We would like to test without writing too much code, so instead we should send a notification payload. To do this, simply change the JSON message to read:

{
"GCM": "{ \"notification\": { \"title\": \"test title\", \"body\": \"test body\" } }"
}

(For more information about the JSON format of an FCM message, see the FCM documentation.)

Once you have done this, make sure your app is not running on the device, and hit the Publish Message button. You should now see a notification pop up on your device.

You can of course do all this programmatically through the Amazon SNS API, however all the examples seem to use the data payload so you need to keep that in mind and generate a payload appropriate to your use case.

Solution 2 - Android

Now you can go to your firebase console (https://console.firebase.google.com/) select your project, click the gear icon and choose project settings, then click on the cloud messaging tab...

You'll see the legacy Server Key which is the GCM API Key and you'll have the option to generate new Server Keys which are the FCM versions

SNS will accept both versions but their menu option is still categorizing it under GCM

Here is picture for your reference:

enter image description here

Note that you can "accidentally" remove your Server Keys but the Legacy server key is not deletable. Also, if you click the add server key button, you'll get a new server key BELOW the first one, WITH NO WARNING! ...Nice job Google ;)

Solution 3 - Android

One more additional note to Nathan Dunn's great answer. How to send data with the notification from SNS to Firebase.

We need to add data to the Json (inside the notification):

{
    "default": “any value", 
     "GCM": "{ \"notification\": { \"body\": \”message body\”, \”title\”: \”message title \”, \"sound\":\"default\" } , \"data\" : {\”key\" : \”value\", \”key2\" : \”value\” } }”
}

In your FirebaseMessagingService implementation (Xamarin example)

public override void OnMessageReceived(RemoteMessage message)
{

    try
    {
   
        var body = message?.GetNotification()?.Body;
        var title = message?.GetNotification()?.Title;
        var tag = message?.GetNotification()?.Tag;
        var sound = message?.GetNotification()?.Sound;

        var data = message?.Data
        foreach (string key in data.Keys)
        {
            // get your data values here
        }

    }
    catch (Exception e)
    {
    }
}

Solution 4 - Android

I tried to use solution with notification payload instead of data, but I did not receive push notifications on the mobile device. I found this tutorial https://youtu.be/iBTFLu30dSg with English subtitles of how to use FCM with AWS SNS step by step and example of how to send push notifications from AWS console and implement it on php with aws php sdk. It helped me a lot.

Solution 5 - Android

Just an additional note to Nathan Dunn's Answer: to add sound use the following JSON message

{
"GCM": "{ \"notification\": { \"text\": \"test message\",\"sound\":\"default\" } }"
}

Solution 6 - Android

It took me a while to figure out how to send the notification with the right payload (publish to topic). So I will put it here.

private void PublishToTopic(string topicArn)
{
    AmazonSimpleNotificationServiceClient snsClient = 
           new AmazonSimpleNotificationServiceClient(Amazon.RegionEndpoint.EUWest1);
    PublishRequest publishRequest = new PublishRequest();
    publishRequest.TopicArn = topicArn;
    publishRequest.MessageStructure = "json";
    string payload = "\\\"data\\\":{\\\"text\\\":\\\"Test \\\"}";
    publishRequest.Message = "{\"default\": \"default\",\"GCM\":\"{" + payload + "}\"}";
    PublishResponse publishResult = snsClient.Publish(publishRequest);
}    

Solution 7 - Android

Amazon does support FCM as all previous code has been migrated from GCM to FCM. Below article explains in detail.

Article Published by Amazon

Solution 8 - Android

To answer the questions:

  1. AWS SNS does support FCM.
  2. No AWS does not store messages after sending push notifications.

For a detailed tutorial on setting up FCM with SNS please read this article.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNarojuView Question on Stackoverflow
Solution 1 - AndroidNathan DunnView Answer on Stackoverflow
Solution 2 - AndroidRezaView Answer on Stackoverflow
Solution 3 - AndroidAdysView Answer on Stackoverflow
Solution 4 - AndroidArbronView Answer on Stackoverflow
Solution 5 - AndroidShao Yuan Chew ChiaView Answer on Stackoverflow
Solution 6 - AndroidAlexeyView Answer on Stackoverflow
Solution 7 - AndroidEpistemologistView Answer on Stackoverflow
Solution 8 - AndroidN. S. MehraView Answer on Stackoverflow