1

应用程序的本地博览会和后端的python [django],我创建了一个应用程序并成功地将通知从python发送到我的应用程序[我正在使用博览会通知发送通知]但我想安排它们,它可以直接反应原生但是我想从 python 做它用于其他目的。有人可以帮我弄这个吗

这是我生成通知的代码

@api_view(['GET'])
def sendNotification(request):
  token = StoreToken.objects.all().last()
  print(token)
  if token == None:
      return Response({'detail':'something went wrong'}, status=status.HTTP_400_BAD_REQUEST) 
  
  message = {
    'to' :  token.token,
    'title' : 'hello',
    'body' : 'this is body'
  }
  return r.post('https://exp.host/--/api/v2/push/send', json = message)
4

1 回答 1

1

我知道这不是完美的方式,但这对我有帮助,对我很有用,也许这对你也有用

https://somehowitworked.dev/push-notifications-react-native-expo-django/

这个上面写的博客将帮助您在 expo 和 python 中设置您的代码,还将指导您完成集成

于 2022-02-09T09:09:26.830 回答