I am creating an app where in it requires to push notifications regarding the updated payment remittances of the user. How can I send the notification to the user when my backend is done dumping the latest payment remittances. What will be the trigger from the API to send notification to the user?
You should use APNS for delivery push-notification for iOS device.
For more info see https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html
Related
I am having some trouble setting up push notifications for conversations.
I followed this guide to setup push notifications to web, and I integrated with firebase but it looks like it's not sending the notifications to firebase?
I can see in the push notifications section in twilio console that it's creating the notifications but when I check the push notification reports in firebase I do not see it there. I have confirmed that firebase was integrated correctly because I can send test push notifications from the firebase console but when I send messages in twilio it does not send the push notifications through to firebase.
Feel free to ask for more info that you might need to help me solve this issue :)
I didn't find this answer anywhere so decided to ask.
Does the Apple Push Notifications have a stats API or dashboard where we can see count for sent, received and opened?
Thanks.
Apple does not provide that kind of dashboard. When you are calling the APNS server to send a push notification you receive a response from the APNS server, that you can use to extract some statistics(mostly if the notification was send). If you need to know that the notification was opened you can manually track if the application was launched due to the user tapping the PN or an action of the PN.
Can I send cross package FCM notification using FCM or Parse push notification?
eg. I have app like OLA customer app and driver app now I want to send a notification from customer app to driver app and driver app to customer app
I solved this problem by managing this on the server by calling API to send a notification to another app.
I would like to send a silent notification to my app users, to refresh the content.
I have read various articles on sending silent notification to opted out users. But, how do we do it? Most opted out users don't have device push tokens. How do you ping a device to send the silent push payload?
We currently use push tokens for opted in users to send a remote notification. But if iOS 8 and beyond allows to send silent notification to all the app users even if they are opted out, how do I send them without a token?
There are no possibility to send remote notifications to devices that are not registered with a device token. Also you can not send any notification if user doesnt allow the app to receive remote notifications.
How can i able to send notification, when app is opened or not opened. I am not getting any proper guidelines in quick blox docs, to send notification between private chat.
Please guide me, how to do this.
By default, QuickBlox sends push notifications to offline users automatically if your opponent is offline
http://quickblox.com/developers/SimpleSample-chat_users-ios#Push_notifications_to_the_offline_users
what you need is:
Create APNS certificate and upload it to the Admin panel http://quickblox.com/developers/SimpleSample-messages_users-ios#Creating_APNS_certificates
Subscribe users to push notifications http://quickblox.com/developers/SimpleSample-messages_users-ios#Giving_a_user_a_Push_Notification_subscription
that's all, after this a user will be receiving pushes when he will be offline