サーチ…


備考

初期化の例で表示されているSenderIDは、Googleから送信されたgcm送信者IDです。プラグインをインストールするときにも表示されます。

ionic plugin add phonegap-plugin-push --variable SENDER_ID="XXXXXXX" 

プッシュ通知に追加データを追加する場合は、このリンクを参照して、入力の追加方法を説明してください。https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/TYPESCRIPT.md

初期化

プッシュ通知プラグインは、提供された送信者IDを使用してプラグインの実行を開始するようにinitに初期設定を要求します。

  let push = Push.init({
      android: {
        senderID: "------------",
      },
      ios: {
        alert: "true",
        badge: true,
        sound: "false",
      },
      windows: {},
    });

登録

登録ステップでは、アプリをデバイスのシステムに登録し、登録IDを返します

 import { Push, RegistrationEventResponse} from "ionic-native";

        //the push element is created in the initialization example
        push.on("registration", async (response: RegistrationEventResponse) => {
                    //The registration returns an id of the registration on your device
                    RegisterWithWebApi(response.registrationId);
    
        });

プッシュ通知を受信する

プッシュ通知を受信するには、プッシュ通知に着信するようにプラグインに指示する必要があります。このステップは、初期化と登録後に実行されます。

import { Push, NotificationEventResponse} from "ionic-native";
      
        //the push element is created in the initialization example      
        push.on("notification", (response: NotificationEventResponse) => {
            let chatMessage: ChatMessage = <ChatMessage>{
              title: response.title,
              message: response.message,
              receiver: response.additionalData.replyTo,
              image: response.image
            };
            DoStuff(chatMessage));
       });


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow