当我通过Expo仪表板站点发送通知时,即使应用程序已关闭,通知也会到来。但是我不使用axios发布来自应用程序的通知。只有在应用打开时才会出现。因为我没有打开应用程序,它不能正常工作吗?
axios.post(
'https://exp.host/--/api/v2/push/send',
{
to: notifyToken,
sound: 'default',
title: 'Yeni Bildirim',
body: 'Seni bekleyen toplam ' + notifyCount + ' okunmamış bildirim var',
_contentAvailable: true
},
{ headers : { accept: 'application/json', 'content-type': 'application/json' }})
.then((res) => {
})
.catch((err) => {
});