如果不使用服务工作者,我该如何发送Web推送通知?

时间:2016-12-23 06:50:04

标签: web push-notification service-worker web-push

有没有办法在不使用服务工作者的情况下发送推送通知?

2 个答案:

答案 0 :(得分:4)

不,为了使用Push API,您需要一名服务工作者。

答案 1 :(得分:0)

您可以使用Pusher / Pubnub等各种服务代表您发送推送通知。例如,使用Pusher和Python,您可以执行以下操作:

from pusher import Pusher

pusher = Pusher(
  app_id=u'APP_ID',
  key=u'APP_KEY',
  secret=u'APP_SECRET'
)

pusher.trigger(u'test_channel', u'my_event', {u'message': u'hello       world'})