Usage: $0 push [options]

Description:

  Sends a test push to the PhoneGap App.

  The intended receiver is the PhoneGap App.

  Please note that this feature _must_ be used with an app that is compatible
  with push notifications. Quickest way to get started is to use the `push`
  application template (`phonegap create pushtest --template push`), and follow
  this tutorial: http://docs.phonegap.com/tutorials/develop/push-notifications

Options:

  --deviceID <deviceID>   device ID (required)
  --service <service>     target service, "fcm", "apns" or "apns-sandbox" (required)
  --payload <data>        JSON object to be sent via push service (required)

Examples:

  MacOS:
  $ $0 push --deviceID APA91bE1MmeTc92igNoi5OkDWUV --service fcm --payload '{ "data": { "title": "Hello", "message": "World"} }'

  $ $0 push --deviceID APA91bE1MmeTc92igNoi5OkDWUV --service apns --payload '{ "aps": { "alert": "Hello World", "badge": 5 } }'

  Windows:
  $ $0 push --deviceID APA91bE1MmeTc92igNoi5OkDWUV --service fcm --payload "{ \"data\":{ \"title\": \"Hello\", \"message\": \"World\"} }"

  $ $0 push --deviceID APA91bE1MmeTc92igNoi5OkDWUV --service apns --payload "{ \"aps\": { \"alert\": \"Hello World\", \"badge\": 5 } }"
