As i have 2 different projects its not possible to use functions.pubsub.topic i.e.
exports.helloPubSub = functions.pubsub.topic('topic-name').onPublish((message) => {
// ...
});
i managed to invoke/subscriptions-work using regular Firebase HTTP functions / https.onRequest function but as there is no way to verify auth token sent from Service accounts on function call, this option is also not working for me.
is there any way to call HTTPS callable functions directly from pubsub subscriptions or any other way to achieve this