I want to send an HTTP Request from Android to a cloud function, post some values, then input these values into real time database.
index.jsconst functions = require('firebase-functions');
exports.testPost = functions.https.onRequest((req, res) => {
console.log(req.body);
});
How can I accomplish this?