如何更改标题,正文和图标django-push-notification`?

时间:2019-06-10 16:13:04

标签: python django web django-push-notifications

我知道缺少文档是known issue。 但是,图书馆的作者似乎很忙,所以我希望这里的某人能为我和队友带来启发

软件:
Python 3.7.3
django-push-notifications:master
django:2.2.1

背景
我需要自定义web push notification。我的目标分别是title, body, and icon

尝试:
我试图模仿APNS and FCM API,但不起作用。

In [22]: wps.send_message("Hello World!", title='test', extra={'title': 111})
Out[22]: [{'results': [{}], 'success': 1}]

在位置参数中使用dict会引起TypeError

In [24]: wps.send_message({'title': 'test'})
TypeError: unhashable type: 'slice'

问题:
如何自定义title, body, and message

0 个答案:

没有答案