私はGCMプッシュ通知APIを試しています。これまでのところ正常に動作しますが、追加データを投稿する方法がわかりません。GCMプッシュ通知によるデータの投稿
私はこのページの手順に従っ:https://developers.google.com/web/fundamentals/getting-started/push-notifications/step-07
だから私はこのようなcurl
要求書いてしまった:
curl --header "Authorization: key=myKey" --header "Content-Type: application/json" https://android.googleapis.com/gcm/send -d "{\"registration_ids\":[myRegistrationId], \"additionalData\": {\"user_id\":\"1\"}}"
をそして、私のsw.js
(私のサービスワーカー)
self.addEventListener('push', function(event) {
console.log('Push message', event);
var title = 'test a';
event.waitUntil(
self.registration.showNotification(title, {
body: 'The Message',
icon: '/assets/img/logo.png',
tag: 'my-tag'
}));
});
この前夜にadditionalData
を読み取る方法はありますかNT?それともこのようにするつもりはない?
読んでいただきありがとうございます!
プッシュ通知に追加データを掲載することができますが、データサイズの制限があります。 –
しかし、私はそれを実際に投稿してプッシュイベントでどのように読むのですか? –
あなたが使用している言語のサーバー側 –