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).
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.
发布评论
评论(1)
没有任何回复供您检查。
apn_on_rails
使用“简单”格式通过流式 TCP 套接字与 APN 进行通信 - 如果连接未断开,则假定成功。多一点Apple 文档中。
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.