Gbenga B Ayannuga
Gbenga B Ayannuga

Reputation: 2792

how to add channel id to push Notification payload

i am using push notification with local notification.. i have to set channel id in my payload.. here is my payload

i am not sure if this is payload for both andriod and ios. please help me out with correct payload.

thanks

exports.chatFunctions = functions.firestore.document("chat/{chatId}/Messages/{messagesId}").onCreate(async (snapshot, context) => {
    if (!snapshot.exists) {
        console.log('No Device');
    }
    const chatDatas = snapshot.data();
    const messageTo = chatDatas['idTo'];
    const deviceTokenuUser1 = await admin.firestore().collection('users').doc(messageTo).get();
    const user1name = deviceTokenuUser1.data()['name'];
    const user1Url = deviceTokenuUser1.data()['profilePictureUrl'];

    let payload = {
        notification: {
            title: `${user1name}`,
            body: `${chatDatas['content']}`,
        },
        data: {
            key: 'chat',
            id: `${messageTo}`,
            click_action: "FLUTTER_NOTIFICATION_CLICK"
        },
        android: {
            priority: "high",
        },
        apns: {
            payload: {
                aps: {
                    contentAvailable: true,
                },
            },
            headers: {
                "apns-push-type": "background",
                "apns-priority": "5", // Must be `5` when `contentAvailable` is set to true.
                "apns-topic": "io.flutter.plugins.firebase.messaging", // bundle identifier
            },
        },

        token: deviceTokenuUser1.data()['tokens'],
    };
    try {
        await admin.messaging().send(payload);

        console.log("Firebase chat Messaging Successfully");
    } catch (err) {
        console.log("error from chat messaging " + err);
    }

Upvotes: 1

Views: 888

Answers (1)

Peter Koltai
Peter Koltai

Reputation: 9754

You can add channel id like this:

let payload = {
// ...
    android: {
        priority: "high",
        notification: {
            channelId: "yourchannelid"
        }
    }

// ...
}

Upvotes: 1

Related Questions