最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览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).

发布评论

评论列表(0)

  1. 暂无评论