I have students who want to send push notifications. We are using chrome. This example shows using only javascript - I modified it to work in appstudio. When it runs, Chrome asks if notifications are OK - but it never shows the message/notification. Any thoughts?
/*
Original sample code:
(from https://www.youtube.com/watch?v=Bm0JjR4kP8w)
const button = document.querySelector("button")
button.addEventListener("click",() => {
Notification.rewuestPermission() .then(perm => }
const notification = new Notification("Example Notification",{
body: "This is a new notification",
data: {hello: "world"}
})
}
})
})
*/
// my adapted code
// asks for permission but doesn't show notification (in Chrome)
Button1.onclick=function(){
Notification.requestPermission().then(perm => {
if (perm === "granted") {
const notification = new Notification("Example Notification")
}
})
}
/*
, {
body: Math.random(),
data: {hello:"world"},
// icon: "picName.png",
})
notification.addEventListener("error", e=> {
alert("error")
})
}
})
}*/