this post was submitted on 13 Dec 2023
275 points (95.1% liked)

Technology

57997 readers
5415 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Steve@communick.news 4 points 9 months ago (3 children)

Apparently that's how it works.

I'd imagine a notification service on the phone that can receive or pull from all the various sources on behalf of the apps installed. That way the app servers don't need to hand the data to Apple/Google servers. It just seems like an extra step.

[–] kautau@lemmy.world 4 points 9 months ago

On Apple, there’s only one notification service. All notifications get pushed through https://en.m.wikipedia.org/wiki/Apple_Push_Notification_service which go through Apple’s servers

[–] pup_atlas@pawb.social 3 points 9 months ago

By doing it that way, you are all the sudden generating tens, if not hundreds of requests per minute to grab notifications for every platform and service, rather than just the one. With a unified approach, the phone can wake up in the background every 5 minutes and ping Google to ask for notifications. If everyone did it individually, your phone would never be able to go to sleep, and would CONSTANTLY be sending out requests to random servers. That also brings up security concerns, since you can get a vague idea of location data from a request, any app that can send notifs can soft track users. They would also open the door for one to be compromised, and send malicious info much easier than it would be to do thru Google. All around, its just a worse solution to the problem with one very small benefit.

[–] Railcar8095@lemm.ee 1 points 9 months ago

Well, the problem is that every would need to have their own server with notifications waiting to be pulled (imagine your phone goes offline) and they need to be beefy enough to answer potentially thousands of requests per second. Almost impossible for small devs.

There's also additional battery need, as it's many calls and payloads, and if a server is slow it can affect all the other notifications. Plus more area of attack.

Not impossible, but I don't think it's the direction things will go.