Is it possible to implement iPhone push notifications in a Google App Engine application?

后端 未结 5 1057
花落未央
花落未央 2021-01-31 11:07

I\'m in the planning phase of an iPhone application and am considering using Google App Engine for my server component due to its scalability features.

Push notification

5条回答
  •  深忆病人
    2021-01-31 11:14

    Nope. Google App Engine forbids native socket connections. You either need to use a third party service (like the ones you mentioned) or have another dedicated server for sending notifications.

    EDIT: Please note that the limitation of GAE on sockets and outgoing calls isn't a library limitation only. Google servers actually block all outbound network connections; they only allow HTTP requests through URL Fetching servers.

    If you like, you can star Issue 1164: Add Support for Apple Push Notification Service.

提交回复
热议问题