Skip to content

Instantly share code, notes, and snippets.

@samarthagarwal
Forked from anonymous/IonicPush
Created July 11, 2015 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samarthagarwal/833064a2de0660e826b6 to your computer and use it in GitHub Desktop.
Save samarthagarwal/833064a2de0660e826b6 to your computer and use it in GitHub Desktop.
.controller('DashCtrl', function($window, $rootScope, $scope, $ionicPlatform, $rootScope, $cordovaPush, $ionicUser, $ionicPush, $ionicLoading) {
$ionicPlatform.ready(function(){
Parse.initialize("eWhdkaASJ2BVx7oFd0o5fBk6ZtBZ3KVRXduOH1D7", "cPH2rkZ1hrFjPbF8qNjwIYATrV3CXWdKUWlC40ro");
$ionicUser.identify({
user_id: $ionicUser.generateGUID(),
// OR, user the device's UUID
//user_id: device.uuid
});
$ionicPush.register({
canShowAlert: true, //Should new pushes show an alert on your screen?
canSetBadge: true, //Should new pushes be allowed to update app icon badges?
canPlaySound: true, //Should notifications be allowed to play a sound?
canRunActionsOnWake: true, // Whether to run auto actions outside the app,
onNotification: function(notification) {
alert("Notification aaya hai!\n"+JSON.stringify(notification))
}
})
//success
$rootScope.$on('$cordovaPush:tokenReceived', function(event, data) {
alert('Got token '+ data.token +' Platform: '+ data.platform);
// Do something with the token
var newFriend = Parse.Object.extend('userListTutorial');
alert("Parse extended");
var friend = new newFriend();
alert("friend created, now saving");
friend.save({regid: data.token}).then(function(object){
alert("Saved to Parse!");
},function(obj, err){
alert("err");
});
});
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment