var addMessage =firebase.functions().httpsCallable('addMessage');addMessage({text: messageText}).then(function(result) {// Read result of the Cloud Function.var sanitizedMessage =result.data.text;// ...});
if (!context.auth) {thrownewfunctions.https.HttpsError("failed-precondition","The function must be called "+"while authenticated." ); }return { text:"Hello World" };});