Parse Server 支持 iOS 和Android的消息推送

Parse Server 是前些天 Facebook 刚刚开源的兼容 Parse.com API 的服务器软件。目前该项目宣布支持 iOS 和 Android 平台的消息推送。可通过 来实现。

使用方式:

curl -X POST \
    -H “X-Parse-Application-Id: YOUR_APP_ID” \
    -H “X-Parse-Master-Key: YOUR_MASTER_KEY” \
    -H “Content-Type: application/json” \
    -d ‘{
          “where”: {
            “deviceType”: {
              “$in”: [
                “ios”
              ]
            },
            “fan”: “Giants”
          },
          “data”: {
            “title”: “A special discount for Giants fans”,
            “alert”: “Check out our app for a 15% discount!”
          }
        }’\ 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b3bbadaa95f9d488cfe06bbf50bf212a.html