Tagged Questions
Apple Push Notification Service (APNs for short) is the centerpiece of the push notifications feature. It is a robust and highly efficient service for propagating information to devices (such as iPhone, iPad, and iPod touch devices) and computers (such as Macintosh computers running MacOS 10.7).
12
votes
1answer
2k views
Determine on iPhone if user has enabled push notifications
I'm looking for a way to determine if the user has, via settings, enabled or disabled their push notifications for my application.
Thanks.
11
votes
3answers
6k views
Add iPhone push notification using ASP.NET server
Here's the overview.
I need to add push notification to an iPhone app. Server side is ASP.NET in c#.
What I would like is some coaching to work through the process. I will then post generic code for ...
11
votes
3answers
1k views
How to send a push notification using Erlang?
I'm trying to send a push notification to APNs using Erlang.
This is the code I came up with so far:
-module(apnstest2).
-export([connect/0]).
connect() ->
application:start(ssl),
...
10
votes
2answers
2k views
Is the APN Device Token unique to each individual app?
I have two apps on the iTunes store - both implement push notifications. While I was testing sending notifications to these production apps, I noticed that a push intended for app A was titled and ...
9
votes
1answer
4k views
Creating .pem file for APNS?
how to create a .pem file to be stored in the hosting server for APN payload data ?
thanks
8
votes
4answers
1k views
Java Sockets and Dropped Connections
What's the most appropriate way to detect if a socket has been dropped or not? Or whether a packet did actually get sent?
I have a library for sending Apple Push Notifications to iPhones through the ...
7
votes
1answer
449 views
can we show badge without APNS?
I want to simulate push notification without using apple's push notification server, so I want to know can I show badge also if yes which API or code I have use to show badge?
7
votes
3answers
696 views
SSL Certificate Error: certificate_unknown
while creating push notification provider for development pr we are facing the below error:
I want to what is the wrong with certificate, because I have enabled the push notification then created the ...
7
votes
2answers
2k views
Apple Push Notification: Sending high volumes of messages
I am using PHP to connect to apns to send some notifications to multiple devices, although the question is more conceptual so it doesn't have to be specific to PHP.
I will be sending to about 7000 ...
6
votes
2answers
2k views
Apple Push Notification Feedback Service - how frequently does it check
I have been able to successfully create push notifications and I have also received responses from the feedback service, so I am confident that my configuration is correct, but I was wondering, how ...
5
votes
1answer
2k views
Long-polling vs Apple Push Notification Service & Android C2DM [closed]
I am building a mobile application that has some realtime constraints. Therefore I turn to stackoverflow to get advices & opinions and attempt to decide which is the best solution to update the ...
5
votes
5answers
2k views
Apple APNs 2048-bit TLS/SSL certificate update
Today i received an email from apple telling they are changing something connected with push notifications, and wanted to ask what to do with the certificate they gave me link to... My server runs ...
5
votes
3answers
3k views
why didRegisterForRemoteNotificationsWithDeviceToken is not called
I am making an application in which I want to implement apple push notification service. I am following the step-by-step instructions given in this tutorial.
But still, the methods are not called. ...
5
votes
2answers
3k views
Push notifications work for Ad Hoc, but not when downloaded from the Apple store
My app just got approved for the apple store. I downloaded it an installed it on my iPhone - but it looks like push notifications are broken!
I was successfully testing push notifications in ...
4
votes
3answers
537 views
iPhone certificate error in apns sharp A call to SSPI failed
i have a data service hosted in azure from which i am sending notification to iphone but while establishing connection with apns i am getting following error
"A call to SSPI failed. The message ...
4
votes
2answers
748 views
Push notifications Service using monotouch
I am starting to look for the Apple Push Notification Service .
I have an created using Monotouch framework,
How can I start to let my app use the apple Push Notification Service,
Should I create ...
4
votes
3answers
901 views
Ruby, SSLSockets, and Apple's Enhanced APN message format
I'm trying to implement support for Apple's enhanced Push Notification message format in my Rails app, and am having some frustrating problems. I clearly don't understand sockets as much as I thought ...
4
votes
2answers
2k views
Apple Push Notification Service APNS - Notifications not arriving
I am trying to add push notifications to my app. I have am using an ad hoc profile. My appID does not have a wildcard. I am using the following php code...
$deviceToken="****";masked
$time = ...
4
votes
1answer
3k views
Multiple iPhone APN messages, single connection
I have a strange issue. I'm trying to get Apple Push Notifications working with Python. I can connect and send individual messages without a problem. The issues pop up when I start sending more than ...
4
votes
4answers
5k views
Apple Push Notification Service: Certificate Install Server Side?
I've followed the instructions at How to build an Apple Push Notification provider server (tutorial) in an attempt to set up a push notification server.
When I attempt to connect with the following ...
4
votes
4answers
1k views
What iPhone push notification services are out there? (Hosted services, not the APNS)
I'm looking to avoid running my own server all the time when dealing with Apple's push notification service. From my understanding, I need a constant connection to the APNS which I can't afford... I ...
4
votes
2answers
7k views
aps_developer_identity.cer to p12 without having to export from Key Chain?
I have a shed load of 'aps_developer_identity.cer' certificates exported from iPhone Developer portal. They were all created using the same Certificate Signing Request and (thus) the same private key. ...
4
votes
3answers
1k views
Apple Push Notification in Erlang (or improved in Ruby?)
I currently have an Apple Push Notification running on my server in Ruby. I'd like to get one going in Erlang as I'd like to use a supervisor to keep watch over it. Does anyone have any code that ...
3
votes
1answer
227 views
Send Push Notification to many device tokens
i have this PHP script:
$q = mysql_query("SELECT `token` FROM `tokens`");
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'apns.pem');
$fp = ...
3
votes
1answer
214 views
Add Image to Push Notification
Is there an easy way to add an image to push notifications? I cant seem to find a suitable post here about it.
Can I intercept the message before displaying the notification so I can look at the ...
3
votes
1answer
111 views
Apple Push Notification Services
If the application is not running in the foreground then the OS will display an alert with the notification received for that application.
My question is ..... whether it is possible for me to set ...
3
votes
3answers
4k views
Receiving push notification on PhoneGap for iOS
Hello everybody
I would like to receive Apple push notifications through my PhoneGap container. Does anybody now if it has already been implemented?
Thanks a lot
3
votes
1answer
466 views
“Push notification” - feedback, uninstall application
Apple push notification - Feedback Service
How do you know when the user uninstalls your application? so that you can remove their devicetoken from the push server.
3
votes
2answers
2k views
iPhone App IDs and Provisioning… Does App ID get used instead of provisioning ID if I decide to use Push?
This is a question that has been bugging me for a while. I started my app (now submitted -- not yet approved) not wishing to get into the mess that is APNS (Push).
I did the following:
iPhone ...
3
votes
5answers
1k views
iPhone SDK Push notification randomly fails
I have a PHP file with the following content that works perfectly on development ceritficates, but when I switch to a production certificate the PHP errors and gives the below message, but it only ...
3
votes
2answers
1k views
Apple push notifications and Emoji characters
I recently found this very interesting article on APNS and Emoji characters: EASY APNS - Just for fun
It contains a list with all supported Emojis. However, I couldn't get them to display in my push ...
3
votes
1answer
2k views
What causes “Neither PUB key nor PRIV key:: nested asn1 error” when building a public key in ruby?
When building a public key using the OpenSSL::PKey::RSA module by passing it a .pem file, what is the cause for a response:
OpenSSL::PKey::RSAError: Neither PUB key nor PRIV key:: nested asn1 error
...
3
votes
1answer
395 views
How to use only my access point
Is there a way to force all my requests
to be made through my APN and not through wifi,
without having to disable wifi?
I want to know if it is possible for my application
to use exclusively the ...
3
votes
2answers
1k views
Are there any PHP Hosts (shared) which do not block port 2195 and 2196 outgoing for iPhone Apple Push Notifications (APNS)?
I have my iPhone Apple push notifications (APNS) working in php on my own machine. I do not block port 2195 outgoing, but it seems HostGator does and is reluctant to open up the port. I'd imagine ...
3
votes
1answer
1k views
iPhone APNS Device Tokens in sandbox vs. production
How do device tokens vary from sandbox to production modes?
I think I have locked up some device tokens into a production mode, and they can't be pushed to from development.
Any ideas on how I can ...
3
votes
1answer
1k views
iPhone APNS Sandbox vs. Production for not yet approved apps
Is it true that the production APNS is unavailable until an app is approved to the app store? I can use the sandbox certificates fine, but production yields no results.
2
votes
0answers
66 views
Apple Push Notification Error/SSL Error 20
I'm having an issue when trying to verify my SSL certificate with Apple Push Notification Services. I followed all the instructions on the iOS developer site (creating the new provisioning profile, ...
2
votes
1answer
35 views
Not able to get Pushnotification
while i'm using push notification in iphone with local server(used php), not able to receive the notification...it shows an error like "Connection timed out (60)".....
can any one tell me clear idea ...
2
votes
1answer
44 views
Removed all certs/keys and now can't get push notifications to app deployed to app store
I recently deployed my app to the app store where it was approved and push notifications were working just fine. Earlier this week I had to go through and completely delete all keys and certificates ...
2
votes
1answer
80 views
Apple push notifications only working on one device
I have push notifications working on my main development device... but it is not working for my test device (using the same application). Does the test device also need to be set up as a development ...
2
votes
2answers
65 views
How does APNs locate device to send notification to?
I was reading about APNs and was curious to know how does the APNs server locate a device based on the device token. The device token is received by the device on app launch and is then given to the ...
2
votes
3answers
190 views
Apple Push Notification with Sending Custom Data
I am sending push notifications from php job application to iphone. I am sending push notifications regarding new jobs. Is this possible that when user click on the view of push notification pop up , ...
2
votes
1answer
390 views
iOS5: how to determine if the Notification Center for the app is turned ON/OFF
I want to respect my users' intent and not call [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(...)] if they've turned off remote notifications for my app.
When calling ...
2
votes
1answer
156 views
Is it possible for an iOS app to programmatically know when an APNS alert arrived on device?
We have a notification centric application which receives notifications from a server via APNS. The server sends the alert at time T0. When the app is not in the foreground, iOS will alert the user ...
2
votes
1answer
78 views
iOS - how to put a custom pop-up before the APNS & enable location pop-ups
I want to put a pop-up screen on my app before the iOS "Allow push notifications" and "Allow location updates" pop-up screens that show up. Is this possible?
2
votes
4answers
246 views
Apple Push Notification Service Problem
I have developed a simple application that uses APNS. The app runs fine and receives notifications when i used my host for php but its not receiving Notifications when i send the php code with ...
2
votes
1answer
193 views
Problem push notify iPhone
I use this code to push:
push("xxxx",3);
function push($deviceToken,$badge) {
$message = "C'รจ il vento ideale!!";
$sound = "default";
// Construct the notification payload
$body = array();
...
2
votes
0answers
173 views
How can I install Entrust's Apple Root Certificate onto Linux (Fedora 14) platform?
I am working on setting up the ApnsPHP to communicate with Apple's Push Server. It is required to install / import Entrust Root Certificate onto the system.
So I only need to download the .cer and ...
2
votes
1answer
561 views
How do I renew the SSL certificate for my ios push notification provider?
A bit under a year ago, a teammember who has now left built an iphone app which is on the app store, and an ios push notification daemon which sends it notifications. Today, the daemon started ...
2
votes
1answer
234 views
Apple Remote Notifications - Handle Token change
I need to use Notifications via APNS in my iPhone App.
But as I read specification, I see the Token can be changed on APNS side and I have to update token on Provider side to receive notifications ...