Let say i have a android app installed on app and user has subscribed to many topic. Now if user uninstalled app
how can I remove all user specific subscribed topic from broker ? Can i unsubscribe paho JS client subscribe topics using paho Java client ?
In JS side this is how i am connecting and subscribing to my broker
client.connect({
userName:user,
password:password,
onSuccess:onConnect,
onFailure:onFailure,
'willMessage': willMessage
});
var onConnect = function(frame) {
client.subscribe("user/"+clientId+"/msg");
};