Bildirim yükünde resim gönderin

FCM HTTP v1 API ve Bildirimler derleyicisi, görüntünün yayınlandıktan sonra cihaza indirilmesi için görüntü bağlantılarının bir görüntü bildiriminin yükünde gönderilmesini destekler. Bildirimler için kullanılacak resimlerin boyutu 1 MB ile sınırlıdır. Diğer içerikler yerel Android resim desteğiyle sınırlandırılmıştır.

Gönderme isteğini oluşturma

Bildirim gönderme isteğinizde aşağıdaki AndroidConfig seçeneğini ayarlayın:

  • notification.image içeren resim URL'si

Aşağıdaki örnek gönderim isteği, tüm platformlara ortak bir bildirim başlığı gönderir ancak bir resim de gönderir. Kullanıcının cihazındaki görsel etkinin yaklaşık bir görünümünü aşağıda bulabilirsiniz:

Görüntülü bildirimdeki basit bir resim çizimi

Node.js

const topicName = 'industry-tech';

const message = {
  notification: {
    title: 'Sparky says hello!'
  },
  android: {
    notification: {
      imageUrl: 'https://foo.bar.pizza-monster.png'
    }
  },
  apns: {
    payload: {
      aps: {
        'mutable-content': 1
      }
    },
    fcm_options: {
      image: 'https://foo.bar.pizza-monster.png'
    }
  },
  webpush: {
    headers: {
      image: 'https://foo.bar.pizza-monster.png'
    }
  },
  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);
  });

REST

POST https://fcm.googleapis.com/v1/projects/myproject-b5ae1/messages:send HTTP/1.1

Content-Type: application/json
Authorization: Bearer ya29.ElqKBGN2Ri_Uz...HnS_uNreA
{
  "message":{
     "topic":"industry-tech",
     "notification":{
       "title":"Sparky says hello!",
     },
     "android":{
       "notification":{
         "image":"https://foo.bar/pizza-monster.png"
       }
     },
     "apns":{
       "payload":{
         "aps":{
           "mutable-content":1
         }
       },
       "fcm_options": {
           "image":"https://foo.bar/pizza-monster.png"
       }
     },
     "webpush":{
       "headers":{
         "image":"https://foo.bar/pizza-monster.png"
       }
     }
   }
 }

Mesaj gövdesinde platforma özgü bloklarda kullanılabilen anahtarlarla ilgili tüm ayrıntılar için HTTP v1 referans dokümanlarına bakın.

notification gösterildiği gibi ayarlandığında bu gönderme isteği, alıcı istemcinin yükte gönderilen görüntüyü işleyebilmesini sağlar.