Giter VIP home page Giter VIP logo

Comments (3)

jolamar avatar jolamar commented on July 24, 2024 4

I'm also wondering this. I think the Payload will need to be updated to support live activities https://github.com/edamov/pushok/blob/master/src/Payload.php#L33

{
    "aps": {
        "timestamp": 1168364460,
        "event": "update",
        "relevance-score": 75.0,
        "stale-date": 1650998941,
        "content-state": {
            "driverName": "Anne Johnson",
            "estimatedDeliveryTime": 1659416400
        },
        "alert": {
            "title": "Delivery Update",
            "body": "Your pizza order will arrive soon.",
            "sound": "example.aiff" 
        }
    }
}

https://developer.apple.com/documentation/activitykit/updating-and-ending-your-live-activity-with-activitykit-push-notifications

You can see the payload keys have expanded to include support for live activities:
https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/generating_a_remote_notification#2943363

So I imagine the new Payload would look something like this:

Payload::create()
    ->setTimestamp(Carbon::now()->timestamp)
    ->setEvent('update')
    ->setRelevanceScore(75.0)
    ->setStaleDate(Carbon::now()->addMinutes(60)->timestamp)
    ->setContentState([
       'driverName' => 'Anne Johnson', 
       'estimatedDeliveryTime' => Carbon::now()->addMinutes(5)->timestamp
      ])
     ->setAlert($alert);

from pushok.

yetdog avatar yetdog commented on July 24, 2024

Correct - I actually hacked this in myself, but mine is more primitive as I created a new class called ContentState - but manually added the field names as they align with my app. Im sure it can be written to be dynamic and definable in the script code, but I didn't go that far.

from pushok.

edamov avatar edamov commented on July 24, 2024

It was added in 0.15.3

from pushok.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.