Does Appwrite Messaging support Critical Messaging for IOS? If yes, how can i send it? I already have the entitlement from apple.
@Afonso Inglês As mentioned in the forum thread, looks like that what Apple requires you to do server sided in order to send critical alerts is setting the sound field this way: { "critical": 1, "name": "default", "volume": 1.0 }
So currently it should be possible to set that from what I understand.
Hey. @D5! Im unable to set the sound parameter as that :( I get this error:
appwrite.exception.AppwriteException: Invalid sound param: Value must be a valid string and at least 1 chars and no longer than 256 chars
print(appwrite_admin.messaging.create_push(
message_id=appwrite_admin.id.unique(),
title="Test",
body="Test",
targets=["7b65b22c9a8a"],
sound={ "critical": 1, "name": "default", "volume": 1.0 }
))
Recommended threads
- Cannot use custom SMTP for messaging (SM...
Hey there! I'm on Appwrite Self-hosted 1.9.0. I've never used the messaging feature before, always sent emails through functions or a custom backend, but I'v...
- GIthub Student dev pack
I have github student developer pack on this account (anand0207sharma@gmail.com) and i tried claiming Appwrite's studentdeveloper pack but its not happening. I ...
- Appwrite Push Notifications: "Unknown er...
Hi all, I'm running into an issue with Appwrite push notifications in my web project. When I try to manually send a notification to a user from the Appwrite we...