6

我目前正在使用ionic/ngcordova构建一个android应用程序。我正在实施推送通知。我已将推送通知实施为在app.run(function(){..})阶段注入的服务。注册部分工作,我收到一个包含regid的回调。另外,当应用程序处于活动状态时,会引发事件并收到通知。当应用程序在后台ngCordova/Ionic推送通知

我遇到的问题是,当应用程序进入后台时,根本没有收到通知。我希望当应用程序没有运行或类似的时候会发出本地通知,但绝对没有任何反应,这很奇怪。

我在过去的两天里一直在寻找解决方案,但我一直无法找到任何表明它应该工作的信息。

,以下是我notificationService.js我的应用程序

app.factory('notificationService', ['$cordovaPush', function($cordovaPush){ 

    var dataFactory = {}; 

    // 
    // When the device is ready and this service has been plumbed in... 
    document.addEventListener("deviceready", function(){ 

     console.log("initializing push notifications..."); 

     _register(); 

    }, false); 


    // 
    // Registers the device for push notifications... 
    var _register = function(){ 

     var config = {}; 

     if (device.platform == 'android' || device.platform == 'Android' || device.platform == "amazon-fireos"){ 

      // TODO: centralise this value as it can change... 
      config = { 
       senderID: "448168747432", 
       ecb: "onNotificationGCM" 
      }; 

     }else { 
      // iOS 
      config = { 
       "badge":"true", 
       "sound":"true", 
       "alert":"true" 
      }; 

      // Can add the following property to the config object to raise a callback with the information if need be... 
      // "ecb": "onNotificationRegisterAPN" 
     } 

     $cordovaPush.register(config).then(function(result){ 

        // 
        // Typically returns "ok" for android and devicetoken for iOS 
      console.log(result); 

     }); 
    }; 

    window.onNotificationGCM = function(result){ 

     console.log(result); 

     /* 
     I get called when the app is in the foreground, but nothing happens when the app is in the background. 
     */ 

    }; 

    dataFactory.register = _register; 

    return dataFactory; 
}]); 

里面如果有帮助,我通过.NET应用程序中使用PushSharp以投递通知。任何帮助将不胜感激。

更新:我使用下面的框架/库:

  • 离子框架1.2.14-beta6
  • 科尔多瓦4.2.0
  • PushPlugin

回答

3

对于任何人其他谁已经像我一样拉了他们的头发了几天,解决方案非常简单...我在Pushsharp QueueNotification请求中缺少两个属性ST。因此,使用在PushSharp GitHub库此处给出的示例:https://github.com/Redth/PushSharp#sample-code

push.QueueNotification(new GcmNotification().ForDeviceRegistrationId("DEVICE-REGISTRATION-ID-HERE").WithJson("{\"alert\":\"Hello World!\",\"badge\":7,\"sound\":\"sound.caf\"}")); 

需要更新添加缺少的属性:

push.QueueNotification(new GcmNotification().ForDeviceRegistrationId("DEVICE REGISTRATION ID HERE") 
         .WithJson(@"{""alert"":""This is the future"",""badge"":7,""sound"":""sound.caf"",""title"":""Status Bar title"",""message"":""Some text you want to display to the user""}")); 

否则,如果您的应用程序恰好用科尔多瓦和其不被开发目前在前台,什么都没有,重复什么都不会发生。

提示我的帽子,gdelavald与他的PushPlugin评论指着我的方向是正确的位置:

https://github.com/phonegap-build/PushPlugin/issues/212

相关问题