我如何安排来自 python 的世博会通知
how can i schedule expo notifications from python
react-native expo for application(android) 和 python[django] for backend,我已经创建了一个应用程序并成功地从 python 向我的应用程序发送通知 [i我正在使用世博会通知发送通知],但我想安排它们,它可能直接反应本机,但我想从 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)
我知道这不是完美的方式,但这对我有帮助并且对我非常有用,希望这对你也有用
https://somehowitworked.dev/push-notifications-react-native-expo-django/
上面写的这篇博客将帮助您在 expo 和 python 中设置您的代码,还将指导您完成集成
react-native expo for application(android) 和 python[django] for backend,我已经创建了一个应用程序并成功地从 python 向我的应用程序发送通知 [i我正在使用世博会通知发送通知],但我想安排它们,它可能直接反应本机,但我想从 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)
我知道这不是完美的方式,但这对我有帮助并且对我非常有用,希望这对你也有用
https://somehowitworked.dev/push-notifications-react-native-expo-django/
上面写的这篇博客将帮助您在 expo 和 python 中设置您的代码,还将指导您完成集成