How do I use Firebase AppCheck with httpsCallable functions?
I'm using firebase functions like so... exports.sendLicenseAgain = onCall({ enforceAppCheck: true, consumeAppCheckToken: true, }, async (req) => { ... }) and i have this in my angular 17 front end code import { getFunctions, httpsCallable } from 'firebase/functions'; import {…