Reputation: 25368
I'm using apn_on_rails to handle push notifications with my Rails app, but I'm not sure how to see what the response from Apple's servers are (for debugging purposes).
Any ideas how to do that?
Upvotes: 2
Views: 368
Reputation: 10876
There is no response for you to inspect. apn_on_rails
uses the "simple" format for communicating with APN over a streaming TCP socket -- if the connection is not severed, you assume success.
A little more here in Apple's docs.
Upvotes: 2