I successfully set FCM in my Website and it is working perfectly. I am using JavaScript to send notification to a 'movies' topic by subscribing it.
fetch('https://iid.googleapis.com/iid/v1/'+tokenz+'/rel/topics/movies', {
method: 'POST',
headers: new Headers({
'Authorization': 'key=****'
})
I don't find any documentation to unsubscribe a topic in web using JS. What is the best way to unsubscribe a single topic and also is there a way to unsubscribe to all topics?