Hey guys, im trying to get the new ngCordova Push notifications to work.
I installed the plugin cordova plugin add https://github.com/phonegap-build/PushPlugin.git and added the example code but i keep getting Unknown provider: $cordovaPushProvider <- $cordovaPush.
Thank you very much, that was my problem. But now im getting TypeError: Cannot read property 'pushNotification' of undefined when i try to use the example code in my controller.
My interpretation of the ngCordova docs was that the callbacks are non-Angular functions. A common Use Case when processing a notification is to change the state/view of the app - ie. $state.go(). To access $state you’ll need to manually inject it outside of Angular (unless somebody can pipe in with a cleaner solution).
function onNotificationGCM (event) {
angular.element(document).injector().invoke(function ($state) {
$state.go('a_specific_chat_window');
});
}
Hi,
I’m having the same problem arielgpe had in the first place. I keep getting this error Unknown provider: pushProvider <- push. I’ve tried including ng-cordova.js before and after cordova.js and it’s still failing.
Here’s my code:
angular.module('diaadia.pushService', [])
.factory('PushProcessingService', ['$http', function($http) {
function onDeviceReady() {
var pushNotification = window.plugins.pushNotification;
pushNotification.register(gcmSuccessHandler, gcmErrorHandler, {
"senderID": "mySenderID",
"ecb": "onNotificationGCM"
});
}
function gcmSuccessHandler(result) {
console.info('NOTIFY pushNotification.register succeeded. Result = '+result)
}
function gcmErrorHandler(error) {
console.error('NOTIFY '+error);
}
return {
initialize : function () {
document.addEventListener('deviceready', onDeviceReady, false);
},
registerID : function (id) {
var feedURL = 'myURL';
var successCallback = function(data, status, headers, config) {
console.log(data);
};
var errorCallback = function(data, status, headers, config, statusText){
console.log(data);
}
return $http.post(feedURL, {'notification_id': id}).success(successCallback).error(errorCallback);
},
}
}]);
function onNotificationGCM(e) {
switch( e.event )
{
case 'registered':
if ( e.regid.length > 0 )
{
//console.log('REGISTERED with GCM Server -> REGID:' + e.regid + "");
var elem = angular.element(document.querySelector('[ng-app]'));
var injector = elem.injector();
var pushService = injector.get('PushProcessingService');
pushService.registerID(e.regid);
}
break;
case 'message':
break;
case 'error':
break;
default:
break;
}
}
I’m able to register the ID in the database so the code apparently it’s working but I don’t understand why I’m having this error…any idea?
Actual device. I’m on a Nexus 5. I actually posted an issue about this with sample code, but I can’t find the post. Not sure if the team removed it for whatever reason.