使用自定义设备信息模型或使用更多属性扩展FCMDevice的正确方法是什么?
例如,我需要在设备信息中存储一些附加字段,例如语言、位置(纬度/液化天然气(、应用程序版本、供应商等。
我是FCM的新手,但对我来说,目前,设备注册流程不是很清楚。 我当前的项目是移动应用程序的后端服务。所以,我有一些使用 djnago-rest-framework 的 REST 服务。
我已经有一个注册/更新移动设备的 API。我可以在添加 FCM 注册 ID 时重复使用它吗?
您可以通过扩展 AbstactFCMDevice 类来定义自定义 FCMDevice 类,如下所示:
from fcm_django.models import AbstractFCMDevice
from django.db import models
class CustomFCMDevice(AbstractFCMDevice):
language = models.CharField(max_length=35, blank=False)
position = models.CharField(max_length=35, blank=False)
app_version = models.CharField(max_length=35, blank=False)
...
..
然后,可以使用自定义类获取查询集:
from custom_fcm_django.models import CustomFCMDevice
device = CustomFCMDevice.objects.all().first()
device.send_message(title="Title", body="Message", icon=..., data={"test": "test"})
您可以使用 django rest 框架 APIView 来创建您的 API 端点,例如:
from rest_framework.views import APIView
class FCMDevicesListAPIView(APIView):
permission_classes = (IsAuthenticated, )
def get(self, request):
queryset = CustomFCMDevice.objects.all()
serializer = FCMDeviceSerializer(queryset, many=True)
return Response(serializer.data)