× Requests and support related to jBackend.

Push notification, token ?

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 8 months ago #5176 by alphaa
Push notification, token ? was created by alphaa
Hi,
How can i get >" token" ?

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5179 by admin
Replied by admin on topic Push notification, token ?
Hi,
the "token" is provided by GCM or APNs when the app on device registers itself. You can read a little bit more about this here:

www.selfget.com/newsblog/55-a-push-notifications-platfom-for-mobile-apps-with-jbackend.html

Kind regards,
Luigi

Please Log in or Create an account to join the conversation.

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 8 months ago #5181 by alphaa
Replied by alphaa on topic Push notification, token ?
Hello,
I have this tutorial but it's not complete. can you give me a link with a complete tutorial please?

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago - 8 years 8 months ago #5182 by admin
Replied by admin on topic Push notification, token ?
The full documentation is available here:

www.selfget.com/documentation/jbackend-joomla30.html

If you still miss something just let me know your points.

Kind regards,
Luigi
Last edit: 8 years 8 months ago by admin.

Please Log in or Create an account to join the conversation.

  • alphaa
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
8 years 8 months ago #5185 by alphaa
Replied by alphaa on topic Push notification, token ?
Thanks for the replies,
look at tthe exemples, what do I have to change?
this url is : julienrenaux.fr/2015/06/25/ios-android-push-notifications-100-free-and-self-hosted-for-wordpress-using-cordova-and-ionic/#Installation
angular.module('yourModuleName').run(function($log, $cordovaPush, $rootScope, $http, $ionicPlatform) {
    var androidConfig, iosConfig, register;
 
    androidConfig = {
        "senderID": ""
    };
    iosConfig = {
        "badge": true,
        "sound": true,
        "alert": true
    };
 
    register = function(os, token) {
        var baseUrl;
        baseUrl = 'http://yourDomainName.com/pnfw';
        if (!baseUrl) {
            return $q.reject();
        }
        return $http({
            method: 'POST',
            url: baseUrl + '/register',
            headers: {
                'Content-Type': 'application/x-www-form-urlencoded'
            },
            transformRequest: function(obj) {
                var p, str;
                str = [];
                for (p in obj) {
                    str.push(encodeURIComponent(p) + '=' + encodeURIComponent(obj[p]));
                }
                return str.join('&');
            },
            data: {
                os: os,
                token: token
            }
        });
    };
    return $ionicPlatform.ready(function() {
        if (ionic.Platform.isAndroid()) {
            $cordovaPush.register(androidConfig).then(function(result) {
                $log.debug('android push notification registration success', result);
            }, function(err) {
                $log.error('android push notification registration error', err);
            });
            return $rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
                switch (notification.event) {
                    case 'registered':
                        if (!notification.regid.length) {
                            return;
                        }
                        $log.debug('registration ID', notification.regid);
                        register('Android', notification.regid).success(function() {
                            return $log.info('Push notif Token stored');
                        });
                        break;
                    case 'message':
                        $log.debug('Push notif message', notification);
                        if (notification.foreground) { // If your user is using the app
                            // Do something like opening the Post within the app
                            // You have access to
                            // notification.payload.id which is the new Post ID
                            // notification.payload.message which is the new Post Title
                        } else { // If your user has clicked on the notification
                            // Do something like opening the Post within the app
                            // You have access to
                            // notification.payload.id which is the new Post ID
                            // notification.payload.message which is the new Post Title
                        }
                        break;
                    case 'error':
                        $log.debug('Push notif error', notification);
                        break;
                }
            });
        } else if (ionic.Platform.isIOS()) {
            $cordovaPush.register(iosConfig).then(function(deviceToken) {
                register('iOS', deviceToken).success(function() {
                    return $log.info('Push notif Token stored');
                });
                $log.debug('iOS push notification registration success', deviceToken);
            }, function(err) {
                $log.error('iOS push notification registration error', err);
            });
            return $rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
                $log.debug('Push notif message', notification);
                if (notification.alert) {
                    if (notification.foreground) { // If your user is using the app
                        // Do something like opening the Post within the app
                        // You have access to
                        // notification.id which is the new Post ID
                        // notification.alert which is the new Post Title
                    } else { // If your user has clicked on the notification
                        // Do something like opening the Post within the app
                        // You have access to
                        // notification.id which is the new Post ID
                        // notification.alert which is the new Post Title
                    }
                }
                if (notification.badge) {
                    return $cordovaPush.setBadgeNumber(notification.badge).then(function(result) {
                        $log.debug('Push notif badge ok', result);
                    }, function(err) {
                        $log.debug('Push notif badge error', err);
                    });
                }
            });
        }
    }, false);
});

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5186 by admin
Replied by admin on topic Push notification, token ?
The register function should be changed like this:
    function register(token, user_id, success, failure) {

        var platform = (ionic.Platform.isWebView()) ? ionic.Platform.platform() : 'generic';

        $http({
            method: 'POST',
            url: '{basepath}/put/push/register',
            data: {
                token: token,
                appcode: {appcode}, // as declared under jBackend
                platform: platform,
                user_id: user_id
            }
        }).then(function(response) {
            success(response.data);
        }, function(response) {
            failure(response.data, response.status);
        });

    }

Kind regards,
Luigi

Please Log in or Create an account to join the conversation.

Time to create page: 0.167 seconds