javascript - Unsubscribe from a topic in FCM Web - Stack Overflow

admin2025-04-03  0

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('/'+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?

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./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?

Share Improve this question edited Mar 22, 2017 at 10:47 AL. 37.8k10 gold badges146 silver badges285 bronze badges asked Mar 22, 2017 at 9:31 deadpooldeadpool 1432 silver badges7 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Good question. It never really hit me that there wasn't an advised way/guide to unsubscribe from topics for FCM Web in the documentation.

As you already know, it is stated that in order to subscribe to a topic, you'll have to make use of the Instance ID API. So I figured that you should use the same. I've gone through the docs, but there isn't anything mentioned which to use when unsubscribing a single token from a single/multiple topic(s).

With all that said, what I would suggest for now is to use batchRemove to unsubscribe your specific token from a topic. Example from the docs:

https://iid.googleapis./iid/v1:batchRemove
Content-Type:application/json
Authorization:key=API_KEY
{
   "to": "/topics/<YOUR TOPIC NAME HERE>",
   "registration_tokens": ["<YOUR TOKEN HERE>"]
}

I also tried the DELETE API, but it deletes the registration token itself (i.e. invalidates it).

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743628838a213853.html

最新回复(0)