Narek
Narek
NNovu
Created by Narek on 3/3/2025 in #💬│support
Problem with duplicated FCM push notifications and action_link
@Pawan Jain Do you have some solution for duplicated notifications and proper redirects on click?
6 replies
NNovu
Created by Narek on 3/3/2025 in #💬│support
Problem with duplicated FCM push notifications and action_link
@Pawan Jain I have figured out with title and body. The payload in onBackgroundMessage method is this { collapseKey: undefined, from: "248546859021", messageId: "bb92fc36-1aed-46bc-a0e9-137a80870eab", notification: { body: "This is a test push notification sent from the backend via Novu.", title: "Test Notification" } } But I am still getting 2 notifications, one with redirect on click and the other one without. I need only one push notification with proper working redirect on clcik. Could you please help me with this?
6 replies
NNovu
Created by Narek on 3/5/2025 in #💬│support
Sending message failed due to \"Requested entity was not found.\"
@Pawan Jain This problem is fixed, thanks
6 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
@Pawan Jain My application is swift based. I am using https://www.pwabuilder.com/reportcard?site=https://ferienhausmiete.de/ to generate package of my application. I am running this package with Xcode, making some edits (including changes for push notifications) and publishing it from Xcode directly to AppStore.
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
Not yet, I am still waiting for some response from @Pawan Jain
36 replies
NNovu
Created by Narek on 3/5/2025 in #💬│support
Sending message failed due to \"Requested entity was not found.\"
Not yet. I will inform about the result ASAP
6 replies
NNovu
Created by Narek on 3/5/2025 in #💬│support
Sending message failed due to \"Requested entity was not found.\"
Thank you @Pawan Jain
6 replies
NNovu
Created by Narek on 3/3/2025 in #💬│support
Problem with duplicated FCM push notifications and action_link
In result I am getting 2 push notifications to my Android phone. One of them with "Default Title" title and "Default Body" and when I am clicking on this notification the application opens on a page "https://www.ferienhausmiete.de/ferienwohnung-ferienhaus-urlaub/deutschland/r11" and this is not what I've sent in payload. This is what is happening because of my messaging.onBackgroundMessage method, but the problem is that the body and title of the inicial request are not avaiable here, that's why the notification has "Default Title" and "Default Body" texts. The second notification has the correct texts (like in push-notification workflow), but here the problem is the redirect on click. Nothing is happening when I am clicking on the notification. My desired result is to get one push notification with correct texts and working redirect on click. Please help me to achieve this simple functionality. Here are several transaction IDs of such requests eb890741-5835-4c6e-b9cd-458b675f7482 c719edfc-af1f-4b71-86c5-8f3323378418 5cbfbebc-db4a-464c-ac85-a2f44562f48a
6 replies
NNovu
Created by Narek on 3/3/2025 in #💬│support
Problem with duplicated FCM push notifications and action_link
This is my firebase-messaging-sw.js file const messaging = firebase.messaging(); messaging.onBackgroundMessage((payload) => { const notificationTitle = payload.notification.title || 'Default Title'; const notificationOptions = { body: payload.notification.body || 'Default Body', icon: "/public/images/logos/logo.png", // Optionally, pass a target URL if you want to navigate to a specific route. // If omitted, you can simply open your app's homepage. data: { click_action: payload.notification.data.click_action || 'https://www.ferienhausmiete.de/ferienwohnung-ferienhaus-urlaub/deutschland/r11', } }; self.registration.showNotification(notificationTitle, notificationOptions); }); // Listen for notification click events. self.addEventListener('notificationclick', function(event) { event.notification.close(); // Close the notification. // Use the click_action from the notification data, or default to your app's homepage. const urlToOpen = event.notification.data.click_action || 'https://www.ferienhausmiete.de/ferienwohnung-ferienhaus-urlaub/europa/r1'; event.waitUntil( // Get all the Window clients (open tabs) for this service worker. clients.matchAll({ type: 'window', includeUncontrolled: true }).then(function(clientList) { // Check if any client is already open that matches the URL. for (const client of clientList) { // If a client is already open, focus it. // You might adjust the condition if you have multiple routes. if (client.url.indexOf(urlToOpen) !== -1 && 'focus' in client) { return client.focus(); } } // If no client matches, open a new window/tab to your application. if (clients.openWindow) { return clients.openWindow(urlToOpen); } }) ); });
6 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
Hi @Pawan Jain , had you chance to check my case?
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
No description
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
@Pawan Jain No, I am sending API requests.
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
I just updated all subscribers and tried to send notification to Android and again got an error. Here are the transactionIds f1cc4926-39ae-4d4e-ae42-1eb495913a5c 4dad0fc9-2f96-43df-a71b-96b8b2312871
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
@Pawan Jain Unfortunately the result is same. Transaction IDs: c0fcc02c-2228-4863-a27c-2643c22ed405 a3c1ea60-7fe1-4701-87f8-4335515b139f
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
ok, I sent deviceToken as a string { "_id": "67bc824f65e0ca66fba75862", "_organizationId": "aaaa", "_environmentId": "aaaa", "subscriberId": "404", "channels": [ { "providerId": "fcm", "credentials": { "deviceToken": "cG9RJgVcYawcRYDJmZ0CBC:AP...." } } ], "data": { "user_id": 111111 }, "deleted": false, "createdAt": "2025-02-24T14:29:35.324Z", "updatedAt": "2025-02-24T14:29:35.324Z", "__v": 0 },
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
@Pawan Jain Agree))) Transaction ID 9eaeb524-78f2-4b40-b7fb-11babd1870df
36 replies
NNovu
Created by Narek on 1/29/2025 in #💬│support
Failed to generate token: secretOrPrivateKey must be an asymmetric key when using ES256
No description
36 replies
NNovu
Created by Narek on 2/20/2025 in #💬│support
Subscribers page functionality problem
ok, thank you
4 replies
NNovu
Created by Narek on 2/18/2025 in #💬│support
How to delete one of several deviceTokens of the same provider?
Thank you
3 replies
NNovu
Created by Narek on 2/17/2025 in #💬│support
Subscribers without subscriberId
Thank you very much. Your idea solves the current problem. Logic of merge will be better, but right now we have what we have.
6 replies