Hi,
I am working to integrate push notification in my app using ionic, I followed tutorial and setup everything which is required.
.config([’$ionicAppProvider’, function($ionicAppProvider) {
// Identify app
$ionicAppProvider.identify({
// The App ID (from apps.ionic.io) for the server
app_id: ‘e022d262’,
// The public API key all services will use for this app
api_key: ‘a25e8a913917dbf1f9207fa1a56bcb92038037489204537a’,
dev_push: false
});
}])
I tested with above (dev_push=true) parameter and I got inside app notification from ionic service but when I make it dev_push=false and check the status at server I don’t get any notification but when I check status I get following response.
Can anybody let me know what I am doing wrong ?