I'm ussing pushpad Express to create a custom notification centre for a webapp, Subscribe is working fine with Uids, but I can't make it work with tags filtering. I check the documentation but I can't find the correct parameter name for this. I tried "tags[]=demo", tags=["demo"],tags=demo, a lot of things, But it doesn't work.
MyApp.pathFor = function (uid) {
return encodeURI(this.path() + '?ui=false&suggest_tags=demo2&uid=' + uid + '&uid_signature=' + this.GenerateUserAuthKey(uid));
};