Start a new topic

Push notifications are not triggered anymore

Hello,


Does anybody else have problems with the push notifications not delivering at the users?

This problem has arisen today.


My Custom Endpoint sees the incomming message, but Kinvey does not send it to the user.

Nothing has changed to the Custom Endpoint since 2 years.

collectionAccess.collection('user').find({

        "CODE": androidPayload.CODE

    }, function(err, userColl) {

        if (err) {

            modules.logger.info('err' + err);

        } else {

            userColl.forEach(function(user) {

              modules.logger.info('---------');

                push.sendMessage(user, message, function(err, result) {});

            });

        }

    });



Via Push through Engagement the user succesfully receives a message.


App key

kid_byTMxDi3Xl


Thanks

1 Comment

The result of the EndPoint returns an 400 error at GCM. How is this possible, i understand that Kinvey automaticle sends the message to Firebase?



{"pushedTo":{"kid":"kid_byTMxDi3Xl","GCM":["XXXXXXXXXXXX"]},"rawResults":{"GCM":{"error":400}}}



Login or Signup to post a comment