0

我一直在修修补补django-push-notifications,遵循谷歌教程

我目前的状态是一个似乎可以工作和注册并要求通知权限等的网络。我正在运行./manage.py runserver并使用localhost:8000. Service Worker 当前正在工作(如预期的那样?)。当我执行device.send_message("Hello world")(通过push_notification模块)时,我可以看到我event在 Javascript 应用程序中收到了一个。目前在 Chrome 中进行测试,我计划为 Android 定制它。

无论我尝试什么,event.data总是Null. 我尝试发送常规消息、结构化消息和该方法的关键字参数extra,但send_message没有成功。

我假设我错过了什么?

我正在运行的内容的片段(不完整,但不确定什么是相关的)

# Trigger push notifications
device = GCMDevice.objects.all()
device.send_message(<some data here>, extra=<some data here>)

关于 Service Worker 中的 Javascript:

self.addEventListener('push', function(event) {
    console.log('Push message', event);

    var data = {};
    if (event.data) {
        data = event.data.json();
    }
    console.log('Push data', data);
    ...

关于设置和注册:

navigator.serviceWorker.register('/sw.js').then(function () {
    return navigator.serviceWorker.ready;
}).then(function (serviceWorkerRegistration) {
    return serviceWorkerRegistration.pushManager.subscribe({userVisibleOnly: true})
}).then(function (pushSubscription) {
    // Last part of the URL is indeed the Registration ID for the GCM
    var reg_id = pushSubscription.endpoint.split('/').pop();
    console.log('Subscribed! Endpoint:', reg_id);

    // Send the registration_id, which is the only required field
    return $http({
        method: "POST",
        url: "{% url 'api:gcmdevice-list' %}",
        data: {registration_id: reg_id}
    });
}).catch(function (error) {
    console.log('Service Worker Error:', error);
});

将信息从 Django 传输到通知的正确方法是什么?

4

1 回答 1

1

django-push-notifications 的实现似乎支持网络推送加密,这是从服务器向客户端发送信息所必需的(根据googlemozilla)。

这意味着要么我更改为另一个实现(如django-webpush@Salva 建议的那样),要么我在django-push-notifications.

老实说,我认为这就是问题所在,但我并不完全确定。

编辑:第三个选项,我自己使用pywebpush. 鉴于我已经有了 JS 的东西,这并不难。如果我必须重新开始,也许我会更接近django-webpush.

于 2016-10-25T08:50:33.307 回答