NotificationPayload interface

顯示通知詳細資料。詳細資料會透過 Send API 傳送。

簽名:

export interface NotificationPayload 

屬性

屬性 類型 說明
內文 字串 通知的內文。
圖示 字串 通知圖示所用的網址。如果您沒有在要求中傳送這個金鑰,FCM 會顯示應用程式資訊清單中指定的啟動器圖示。
圖片 字串 透過裝置下載並顯示在通知中的圖片網址。
title 字串 通知的標題。

NotificationPayload.body

通知的內文。

簽名:

body?: string;

NotificationPayload.icon

通知圖示所用的網址。如果您沒有在要求中傳送這個金鑰,FCM 會顯示應用程式資訊清單中指定的啟動器圖示。

簽名:

icon?: string;

通知 Payload.image

透過裝置下載並顯示在通知中的圖片網址。

簽名:

image?: string;

通知 Payload.title

通知的標題。

簽名:

title?: string;