Hacktoberfest 2026: le issue che i maintainer hanno segnato per ottobre, aperte e adatte ai principianti. Sfoglia le issue Hacktoberfest

Message to end Live Activity does not close it on the device.

Aperta
#909 2 commenti 0 reazioni 2 assegnatari Vedi su GitHub

@chong-shao ci sta già lavorando.

Dal 2/9/2025.

Valutazione

Questa issue non è ancora stata valutata.

Descrizione

api: messaging
Environment
  • Operating System version: python:3.12.10-slim Docker image running on MacOS
  • Firebase SDK version: 6.9.0
  • Firebase Product: cloud messaging
  • Python version: 3.12.10
  • Pip version: 25.0.1
The problem

Management of iOS live activities.
Currently I can successfully start a live activity using the sdk with the following message:

message = messaging.Message(
  apns=messaging.APNSConfig(
    live_activity_token=live_activity_token,
    payload=messaging.APNSPayload(
      aps=messaging.Aps(
        alert=messaging.ApsAlert(
          title="Live Activity Started",
          body="Your live activity has been started",
        ),
        custom_data = {
          "input-push-token": 1,
          "event": "start",
          "timestamp": int(time.time()),
          "content-state": {
              "myAttribute": False,
          },
          "attributes-type": "MyObjectAttributes",
          "attributes": {
              "name": "name",
          },
        },
      ),
      headers={
        "apns-priority": "5",
      },
    ),
  ),
  data={ 'type': 'mytype' },
  token=token
)

The issue appears when trying to end the live activity, it seems that the sent message has no effect and the live activity remains on the lock screen of the device. This is the message that is being sent:

message = messaging.Message(
  apns=messaging.APNSConfig(
    live_activity_token=live_activity_token,
    payload=messaging.APNSPayload(
      aps=messaging.Aps(
        alert=messaging.ApsAlert(
          title="Live Activity Ended",
          body="Your live activity has been ended",
        ),
        custom_data = {
          "event": "end",
          "timestamp": int(time.time()),
          "dismissal-date": int(time.time()),
          "content-state": {
              "myAttribute": False
          },
          "attributes-type": "MyObjectAttributes",
          "attributes": {
              "name": "name"
          },
        },
      ),
      headers={
        "apns-priority": "5",
      },
    ),
  ),
  data={ 'type': 'mytype' },
  token=token
)

All the responses of the messaging.send_each method are successful (response.success => True) but the live activity does not end.

Steps to reproduce:

Currently these are the steps to reproduce the issue:

  • Start a live activity with the start message
  • Send the end message via the messaging.send_each method
  • Check the responses, they should be successful
  • The live activity still displays on the device

PS: this might be an issue with Firebase itself and not with the sdk, but I am not entirely sure.

Lingua principale
Python
Stelle
1.2k
Fork
359
Merge medio
5g 6m
PR unite (30g)
2

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di firebase/firebase-admin-python

Tutte le issue di firebase/firebase-admin-python

Issue simili

Altre issue su Python

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.