Sergey Grishchev
Sergey Grishchev

Reputation: 12051

Sending push notifications from client

I have several clients that want me to create an app and after it has been published in the App Store they want to have remote control over the iOS feature of push notifications - they want to send custom text etc. through the app. I'm totally new to this topic so I'd like to ask the question of how this can be done.

Thanks in advance!

Upvotes: 2

Views: 1934

Answers (3)

Rubycon
Rubycon

Reputation: 18346

Yes, you need a server side application for Push Notifications.

Fortunately, there are lots of ready and FREE push providers which can help here and save your time

For example, ConnectyCube, they have a great and simple iOS guide on pushes https://developers.connectycube.com/ios/push-notifications

It also works cross-platform: iOS-Android-Web

Also, one of the day-to-day issue is APNS certificate generation. There is a dead simple guide how to do it https://developers.connectycube.com/ios/how-to-create-apns-certificate

Upvotes: 4

bgolson
bgolson

Reputation: 3500

You'll need your own web server before getting started. Also, to allow your clients to send notifications, you'll have to have a website for them to post their messages to. If you need a web server, I've had good experiences with maxiumumasp as a provider. Here's a link:

http://www.maximumasp.com/products/virtualDedicated/default.aspx

Apple has really good documentation on push notifications here:

http://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html

Please let me know if you have other specific questions after reading this.

Upvotes: 0

Stuart Petty
Stuart Petty

Reputation: 11

To be honest the simplest way of using push notifications is to use a service such as Urban airship.

I'm no expert on the subject but im sure that the terms in the app store have changed in regards to push notifications. So just make sure they are not sending out marketing spam etc.

Upvotes: 1

Related Questions