Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unsubscribe Firebase cloud messaging client via REST API

Is it possible to unsubscribe mobile client via REST API? I need it so my application server can unsubscribe clients.

like image 881
IllSc Avatar asked Oct 21 '25 15:10

IllSc


1 Answers

Yes, you can use batchRemove to remove multiple registration tokens from a topic, for more information see: https://developers.google.com/instance-id/reference/server#manage_relationship_maps_for_multiple_app_instances

like image 191
morepork Avatar answered Oct 23 '25 07:10

morepork