I am creating iPhone app where I want to send notification to users who have my app. When admin login add some building, I want to send push notification. (not by going to push notification website and then sending manually)
Any idea how to get this done?
I am new to push notification.
For push notification., get register yourself here..
Urban Airship
Tutorial Link
This website is providing to send push notification for our app.
I've also implemented this in my app.
Enjoy. happy coding. Thanks
Related
I want to send push notification to all users who is installed my iOS app. Can you tell me the best and easy process for this?I want to send push without storing or using any specific device token. It will work for all users. I'm using FCM for this but for user segment i don't get push notification. For single device by given fcm token it's working fine.
If you want to send push notification manually to everyone who has your app installed already you should use Firebase cloud messaging.
You can read more here: https://firebase.google.com.
If you find this answer useful/correct, please mark it as correct.
Does anybody know a way to implement in app notifications?
For example like Facebook and Twitter have notifications in the app so if you receive a message or have been tagged you get a notification inside the app. Then when you click that notification it shows you a list of all the notifications you have received.
I hope the question makes sense.
Would appreciate any help. Thank You
Facebook & Twitter uses Push Notification to notify the users. You need to implement push notification for it.
If you have feature which is local to the app then you can implement Local Notification.
Reference link for both
I am using pushapps site for notifications. Easy to implement, easy to use. http://www.pushapps.mobi/
I created an app which receives push notifications from my server. At the same time, if some other app is sending push notifications (for e.g., whatsaap, twitter), the notification is getting displayed when I'm using my app. I want to hide all other app's push notifications except my app's push notifications. Can this be done in iOS? I want my app to receive push notifications only from my server but not from the other apps.
Thanks in advance.
Try to think like your customer. Would they like to receive the push notifications of the other apps (whatsapp, twitter, the notification that a very important email just arrived)? Of course they would. Your App is one of many and most probably not the most important one they own.
Let me provide some background first.
Your app can only receive notifications from your service/server.
The user might have apps that are receiving notifications from the respective service/server.
e.g. if the user has FB app, then it would be receiving notification from FB servers.
In the end, you are only responsible for managing your service/server.
There is no way for you to block notifications that are received from other services from your app.
Hope this helps.
How do you go about sending users push notifications for automated actions in an app, such as sending them a notification when their lives have been refilled? This doesn't seem like an action that should need a server, but rather the app itself determines when to send out the notification.
What you need is not a push notification, but a local notification. See this question
Is there a way to show or list Apple push notifications on any user page?
It's pretty hard to find where is the alert message is received.
Here is the Xamarin doc for Remote Notifications: http://docs.xamarin.com/guides/cross-platform/application_fundamentals/notifications/ios/remote_notifications_in_ios/.
iOS handles the push notification for you, your app is only informed of a push notification if you app is running in the foreground or when the user clicks on the notification and you app is opened.
With the iOS SDK there is no way to get a list of notifications for you app, the best way to create this is by keep a list server side.
Have a look at MonoTouch.UIKit.UIApplicationDelegate.ReceivedRemoteNotification Method