how to send key/value data to ios devices using firebase admin sdk on nodejs
const message = {
notification: {
title: title,
body
},
android: {
data: {
id: id
}
},
apns: {
payload: {
contentAvailable: true
}
},
topic
};
await admin.messaging().send(message);