Earlier quoted context omitted.
I think the author has made it as simple as possible for users and developers with basic skills.
While I agree with the notion of making things simple, security theater is worse than no security at all because it makes you feel safe when you may not be.
Messages via JSON
11–20 of 129 posts
Re: Messages via JSON
#12Re: Messages via JSON
#13Re: Messages via JSON
#14What's the point? Why not just forward a message to XMPP, Telegram, WhatsApp or email? You know, to the app users actually use. Why make them install one more quasi-messenger?
Re: Messages via JSON
#15What's the point? Why not just forward a message to XMPP, Telegram, WhatsApp or email? You know, to the app users actually use. Why make them install one more quasi-messenger?
Re: Messages via JSON
#16What's the point? Why not just forward a message to XMPP, Telegram, WhatsApp or email? You know, to the app users actually use. Why make them install one more quasi-messenger?
This would be nice for websites and services users want to get push notifications from. I get that html5 notifications should be able to do this at some point but there is still merit in having another way of getting stuff to your phone and possibly desktop.
Re: Messages via JSON
#17> Request signature format(crc): [time_stamp]_[md5(time_stamp+secret_key)] This should probably be an HMAC construction at the very least, and MD5 in general just should be discarded entirely in favor of BLAKE2b, SHA-2 or SHA-3. And ideally, it'd actually validate the rest of the contents as well.
Given that, you might as well just use an unchanging token or Basic Auth. Assuming https, that wouldn't be terrible for this kind of use case. But put it in an Authorization header, not in a query parameter, so it doesn't end up in logs.
Re: Messages via JSON
#18Re: Messages via JSON
#19What's the difference between this and [Pushover]( https://pushover.net )?
Pushover is push based, while this looks to be pull based.
Re: Messages via JSON
#20What's the difference between this and [Pushover]( https://pushover.net )?