× Requests and support related to jBackend.

jBackend notification issue - need help

More
8 years 9 months ago #5052 by jail10
Replied by jail10 on topic jBackend notification issue - need help
One question tho !
Is there any way to receive a notification when the application is closed ?
It does receive notifications if the application is running in the background.

Thank you !

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

More
8 years 9 months ago #5053 by jail10
Replied by jail10 on topic jBackend notification issue - need help
Done ! I tested on 3 huaweii devices. Apparently they have a problem with their version of Android. On every other device I tested it worked, even if the application was in the back-background.

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

More
8 years 9 months ago - 8 years 9 months ago #5055 by admin
Replied by admin on topic jBackend notification issue - need help
Sorry for delay, but I was two days out of office.

(* GOD ! If I had 5000 clients making calls to the same api call every 10 seconds the server would have gone insane ! So dumb of me ! But still, the above question stands ^_^)


It seems now you have it clear :)

Is there any way to receive a notification when the application is closed ?
It does receive notifications if the application is running in the background.


Essentially the app receives the push notification in any case, but you have to manage it. As example, if you are using the cordova push module:

github.com/phonegap/phonegap-plugin-push

In the push.on('notification', callback) there is an option that allows you to check the state of the app when the push is received:

data.additionalData.foreground
boolean
Whether the notification was received while the app was in the foreground


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

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

More
8 years 9 months ago #5059 by jail10
Replied by jail10 on topic jBackend notification issue - need help
Hi Luigi.

Yes, I am using the pushplugin.

Sorry for being a bother; but I do have another question (I am unsure whether or not this question concerns you or your work, but I will try anyhow) - as I said, I am now capable of receiving notifications; however, I cannot seem to understand how to set badges. Or rather, how the `badging` works , on android devices.

What I have tried : I have tried to set the badge manually using the features the push plugin provides, when a new notification arrives. However, when in background, the on notification event does not trigger, for whatever reason, and the badge does not update.

You said that there is a property that allows you to check the state of the app when the event was triggered

data.additionalData.foreground
boolean
Whether the notification was received while the app was in the foreground


however, as I understand, the event does not run when in background.

Is there any other way to set the badge ? Thanks !

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

More
8 years 9 months ago #5060 by jail10
Replied by jail10 on topic jBackend notification issue - need help
Basically I have this in the on notification :

push.on('notification', function(data) {
console.info('!!! Information received : ', data);
try {
if(!data.additionalData.foreground) {
push.setApplicationIconBadgeNumber(function(s) {
console.info('Badge success', s);
}, function(error) {
console.error(error);
}, 55);
}
} catch(e) {
console.error(e);
}
});

The console.info logs data to the console (using chrome inspect to debug) - when the app is in foreground; and I do see the foreground property, but I cannot see the log when in background (makes sense, the app goes to sleep), so the code does not trigger.

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

More
8 years 9 months ago #5061 by jail10
Replied by jail10 on topic jBackend notification issue - need help
Oh, never mind - got it.

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

Time to create page: 0.130 seconds