How to use push notifications

Regarding push notifications. How to get APNS provision for embedding push notifications in my application. Help me guys.

+6
source share
2 answers

start with these episodes

http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12

IOS developers love to imagine users of their amazing app using the app all day, every day. Unfortunately, the cold truth is that users sometimes have to close the application and perform other actions. Laundry does not add up itself, you know:]

Fortunately, push notifications allow developers to reach users and perform small tasks, even when users are actively using the application!

Push notifications are becoming more powerful since they were first introduced. In iOS 9, push notifications can:

  • Display a short text message
  • Play notification sound
  • Set icon number on application icon
  • Provide actions that the user can perform without opening the application.
  • Be silent by letting the app wake up in the background and complete a task.

This push notification guide describes how push notifications work, and you can try their functions ...

+11
source

I followed the steps mentioned in the best course textbook . It is that it is easy to send push notifications to my iPhone application using my system as a temporary server (i.e. by sending a message, running PHP code from a terminal window).

But, while for creating and dynamic messages for different users at different times, it is very difficult for me to configure the service on the server.

So, I go to a third-party server to send push notifications. - Parse.com

Tutorial to use this API.

Application installation documentation .

Here we have the tag for questions about this process.

0
source

Source: https://habr.com/ru/post/892312/


All Articles