サービス ワーカーと GAE は初めてです。サービス ワーカーを登録できますが、PushManager をサブスクライブできず、サブスクリプション null エラーが発生します。以下のコードを参照してください。
serviceWorkerRegistration.pushManager.getSubscription()
.then(function(subscription) {
var pushButton = document.querySelector('.js-push-button');
pushButton.disabled = false;
if (!subscription) {
console.log('subscription error ');
return;
}
console.log('subscriptioned ');
// Keep your server in sync with the latest subscriptionId
sendSubscriptionToServer(subscription);
// Set your UI to show they have subscribed for
// push messages
pushButton.textContent = 'Disable Push Messages';
isPushEnabled = true;
})
.catch(function(err) {
console.warn('Error during getSubscription()', err);
});
});
上記のコードでは、内部で「サブスクリプション」値を「null」として取得するため、制御は if ブロックに来て、単に戻ります。