Hi, I tried looking for some similar problems but couldn't find any. Even with the doc I couldn't solve the problem.
Meanwhile, I use appwrite cloud with the latest sdk on a vue 3 js app.
I am developing a PWA and would like to set up sending notifications for various scenarios, to do this I set firebase FCM Messaging for notifications from firebase console and on my vue app.
Sending a test message actually gets received by the various clients.
Now I would like to move the handling of notifications to appwrite and to do this I set as the provider for push notifications, FCM with its congif.json file.
From here on I have various doubts: -Now do I need to add to the various users a target for notifications? if yes how can I do that? Using
messaging.createSubscriber?
In the doc I only saw examples for android or ios apps.
As a test I tried to enroll an auth client with:
const result = await messaging.createSubscriber(
'<topic_id>',
ID.unique(),
<token from firebase getToken()>
);
but i received
AppwriteException: Invalid `targetId` param: UID must contain at most 36 chars
Recommended threads
- How connect an existing sveltekit projec...
The docs are splitte with two different versions... ### [Oficial Docs](https://appwrite.io/docs/quick-starts/sveltekit): **1. Create project** **2. Create Sve...
- Rate limit
How do I solve "Signup Failed, Rate limit for the current endpoint has been exceeded. Please try again after some time"? I have Pro and around 2k requests per ...
- Type 'Theme' does not satisfy the constr...
Type 'Theme' does not satisfy the constraint 'Row'. Type 'Theme' is missing the following properties from type 'Row': $id, $sequence, $tableId, $databaseId, a...