Hello everyone
Has anyone tried using pushback.io?
It looks very interesting.
It can be used to send notifications both to Andriod and Iphone, where you can reply back with multi reply options.
There are several program examples on their website.
I’ll check it out some day, thanks
I’m currently solving it with a middleman web server forwarding the request body over mqtt where my node-red install is subscribing to.
Interesting note here:
So on notifications with synchronous connection and a limit on how many connections you can have open and thus number of concurrent outgoing synchronous notifications you’ve to fall back to webhooks. Which is essentially what I’ve implemented myself already through that middle server. It looks good, but I’m afraid it’s not useful for my situation. I’m behind double NAT and it’s part of a healthcare network so I’m not taking any risks there. MQTT connecting in/out with occasionally ngrok is risky enough for me.
Another thing to consider if you are looking for a low usage 'free' service is that pushback allow 1,000 messages in their free tier, and that's per account, not per month.
So once you hit 1,000 messages, either you must upgrade to a paid plan, or the service stops.
It is true that this should be considered.
But I was thinking that if I could get push messages that I could answer so I could control my cottage, then $ 1 / month was cheap.
I don't have the knowledge to program it in other ways.
You'll be able to get notifications on Android, iOS, and web. The http request is using Pushback's synchronous mode so it will block until you click an action on your phone or computer. That means you don't have to open a port and it works behind any firewall.
I've also included a switch in the gist that shows how you can do different flows depending on which action you choose. You can even have a text field on your push notification which allows a free response.
You can try out Pushback without signing up. I've tried to make creating an account as painless as possible.
Hi Dan, welcome to the forum & thanks for the personal email & writing up an example gist.
Node-RED indexes useful gists in a library which users then generally search, should they need an example of how to do something. If you wish to add your example, please visit https://flows.nodered.org/, log in & and hit the + button top right. That will guide you and allow your gist to be indexed & publiscised on twitter, slack, etc.
I've just had a quick try of pushback, and do have a few quick questions;
How do you change the priority alert level sound via the api, for example, low = silent, normal = default sound, urgent = verbose/repeating.
Can you change how the alert is displayed, for example disappear into the notification bar, remain on screen until a reply is made, etc.