function notificationMessageLocalization()

in messaging/index.js [315:349]


function notificationMessageLocalization() {
  // [START fcm_notification_message_localization]
  var topicName = 'industry-tech';

  var message = {
    android: {
      ttl: 3600000,
      notification: {
        bodyLocKey: 'STOCK_NOTIFICATION_BODY',
        bodyLocArgs: ['FooCorp', '11.80', '835.67', '1.43']
      }
    },
    apns: {
      payload: {
        aps: {
          alert: {
            locKey: 'STOCK_NOTIFICATION_BODY',
            locArgs: ['FooCorp', '11.80', '835.67', '1.43']
          }
        }
      }
    },
    topic: topicName,
  };

  getMessaging().send(message)
    .then((response) => {
      // Response is a message ID string.
      console.log('Successfully sent message:', response);
    })
    .catch((error) => {
      console.log('Error sending message:', error);
    });
  // [END fcm_notification_message_localization]
}