Questions tagged [apns-php]

A full set of open source PHP classes to interact with the Apple Push Notification service for the iPhone, iPad and the iPod Touch.

From the project page:

A full set of open source PHP classes to interact with the Apple Push Notification () service for the devices with iOS operation system, such as iPhone, iPad and the iPod Touch.

  • Development server: api.development.push.apple.com:443

  • Production server: api.push.apple.com:443

In general APNS works in the following way:

  1. Web application sends request via HTTP/Socket connection to Apple's APNS server. The message should contain payload(what use will receive) and unique device token that was sent to the server beforehand.
  2. APNS server determines specific device and application should it sends notification to, is user allowed specific application to get the notification, etc
  3. If 2-nd item is OK, iOS receives push notification.
152 questions
-2
votes
1 answer

Looking for a suggestion for building an APN Server that stores data (token) in SQL

I originally used http://www.easyapns.com/ as a guide for building my backend and sending push notifications. However I quickly realized that this no longer works, and I'd love to find another solution that works similar. Essentially I need to…
f00d
  • 581
  • 1
  • 6
  • 21
-2
votes
1 answer

push notification not sent for production even it is connected to APNS

I want to implement push notifications in my application. First, I try it for development side, it is working. Now, I am testing it for production, it is not working. I already changed sandbox to ssl://gateway.push.apple.com:2195 in my php. I…
1 2 3
10
11