0

I have seen all the links related to Push notifications in Google. And read Programming Apple Push Notification Services on MobiForge. From this I have created the certificates and created the app and got the Device token by running the application. But after that how can i get the notification (either in local or remote way). If any one know please give me a clear idea.

NobRuked
  • 593
  • 4
  • 12
Vennela
  • 69
  • 2
  • 11
  • There are two services that are needed to perform push notifications for iOS. One is from Apple that gives you the token. The other is your own push notification server. You need to either create that server yourself and host it or use a their party like Urban AirShip. If you are familiar with Rails, I think there is even a gem available to set up that service. Once you have that server set up then your app needs to contact that server, and pass it the token. Once you device is registered on both your server and Apples, you can use your server to push to the registered device. – carbonbasednerd Dec 28 '11 at 12:55
  • Hi carbonbasednerd, Thanks for ur response. I got the Device token but i didn't get any notification upto now. Am i need to do anything. – Vennela Dec 29 '11 at 06:29
  • What are you using for your push notification server? Urban Airship? something else? – carbonbasednerd Dec 29 '11 at 18:02

1 Answers1

1

If you have followed the above link fully; you would be able to test the notification. More to this there are few players who are giving paid services to do push notifications and give you wizard to prepare your notification. e.g Urban AirShip.

More to this please follow the following links.

  1. iOs Push Notifications
  2. Push Notifications Certificates Question
  3. Apple PNS (push notification services) sample code
Community
  • 1
  • 1
Jigar Pandya
  • 6,004
  • 2
  • 27
  • 45
  • Hi Jigar AKA Jack ,Thanks for ur response. I got the Device token but i didn't get any notification upto now. Am i need to do anything. – Vennela Dec 29 '11 at 06:27