应用程序的本地博览会和后端的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)