June 2018
Beginner to intermediate
250 pages
4h 41m
English
Following the Lambda setup, it's time to code the actual Lambda function. We will be editing the code inline, in the index.js file on the Developer Portal itself, following these steps:
Before we move on to write the functional logic, declare the following variables, which will be used by our functional logic:
var https = require('https');var firebaseHost = "androidwarehousemonitor.firebaseio.com";
firebaseHost is the same URL (it may ...