Curious, what are some examples of public json files I would "subscribe" to?
My understanding is that you would be making your own. E.g. if you had a site that people could comment on, make a url that serializes those comments as JSON and then point this at that.
Messages via JSON
41–50 of 129 posts
Re: Messages via JSON
#42Re: Messages via JSON
#43Re: Messages via JSON
#44What exactly is new in this ? Isn't this what Android and iOS notification services do ? And all messaging services ? What did I miss
It's a mobile app that polls an endpoint for json, after the user configures it (seemingly with a QR code), that's all. There's no middle-man server, and it's also not push. Neat idea, low barrier to entry. Can't tell from docs how authz/authn are handled.
And client app will eat my battery because one more service is constantly polling now ?
Re: Messages via JSON
#45Re: Messages via JSON
#46 $json_array = array('reflapp'=>true,'message'=>'test');
shouldn't that be $json_array = array('refl.me'=>true,'message'=>'test');Re: Messages via JSON
#47What exactly is new in this ? Isn't this what Android and iOS notification services do ? And all messaging services ? What did I miss
Any web service can integrate with it as long as it responds with a JSON object that adheres to the specification. It is genius.
Re: Messages via JSON
#48So is this just polling an api that responds in JSON and then updating your phone if something in the response changes?
Re: Messages via JSON
#49Why?
Re: Messages via JSON
#50Earlier quoted context omitted.
What's wrong with that?
Because it is the most inefficient approach possible. You either have potentially long delays before receiving a notification (if you poll service once an hour, average delay would be 30 minutes), or you do LOTS of polling, draining the battery/abusing the service. If you have 20 notifications / day and you check service every minute, in a day you'll make 24*60 poll requests, only 1,38% of which would yield some mean…