ApnsConfig interface

代表可納入「訊息」 中的 APN 專用選項。如要查看 APN 支援的各種標頭和酬載欄位,請參閱 Apple 說明文件

簽名:

export interface ApnsConfig 

屬性

屬性 類型 說明
fcm 選項 ApnsFcm 選項 FCM SDK for iOS 提供的功能選項。
標題 { [key: string]: string;} APN 標頭集合。標頭值必須是字串。
酬載 ApnsPayload 要加入訊息中的 APN 酬載。

ApnsConfig.fcmOptions

FCM SDK for iOS 提供的功能選項。

簽名:

fcmOptions?: ApnsFcmOptions;

ApnsConfig.headers

APN 標頭集合。標頭值必須是字串。

簽名:

headers?: {
        [key: string]: string;
    };

ApnsConfig.payload

要加入訊息中的 APN 酬載。

簽名:

payload?: ApnsPayload;