ibm mobilefirst - Does IBM Worklight 6.0 support Rich Push Notification -


i know ibm worklight 6.0 server supports basic push notification, , there sample codes available on ibm worklight site implement it.

i want know if ibm worklight server supports rich push notification sent gcm or apn worklight server.

sample code send push notification mobile sound supported given below:

wl.server.notifyalldevices(usersubscription, {       badge: 1,       sound: "alarma.wav",       activatebuttonlabel: "clickme",       alert: notificationtext,       payload: {           foo : 'bar'       }   }); 

i want check if payload can support send rich notification.

worklight push notifications android:

  • support basic gcm notifications (push notifications)
  • support cloud sync notifications
  • support notifications priority (starting mfp 6.3)
  • does not support rich notifications - note rich notifications not same push notifications
  • does not support creating custom notification views (you'll need override default , implement on own)

worklight push notifications ios:

  • support basic notifications
  • support silent notifications (starting mfp 6.3)
  • support interactive notifications (starting mfp 6.3)
  • support background notifications (starting mfp 6.3)
  • does not support local notifications

you encouraged submit feature requests.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -