Shpigford
Shpigford

Reputation: 25368

Logged response for Apple's Push Notifications servers with apn_on_rails?

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

Answers (1)

Ian Terrell
Ian Terrell

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

Related Questions