I’ve PUT /tips/tid with alert=true and I am still unable to get an “alert” to fire off. I can see the donations are being added by looking at my dashboard but i don’t see that functionality being mirrored here.
I’ve tried with “alert=true” in the querystring and in the request body.
client.subscribe('/'+client_id, function(data) {
// We got a new tip!
console.log("It would appear we have recieved a tip");
console.log(data);
}).then(function() {
// We are logged in!
console.log('Logged into server');
});
All I see in the console is “Logged into the server”
I am operating under the assumption that once subscribed to this channel that I should be able to see any donations that I have manually PUT up. (This looks to be quite similar to socketIO in that you “listen” on certain channels)
Thanks for all the hardwork I am enjoying playing around in the new system.
EDIT: to be clear, i see no indication of an alert in the “Streamtip Alerter” or the code featured above.