Skip to content

Instantly share code, notes, and snippets.

@AlexLakatos
Created January 30, 2020 15:17
Show Gist options
  • Save AlexLakatos/beda78758bc51ebdea9c4cdc35eb92cc to your computer and use it in GitHub Desktop.
Save AlexLakatos/beda78758bc51ebdea9c4cdc35eb92cc to your computer and use it in GitHub Desktop.
Receive SMS Webhook - Azure Function
module.exports = async function(context, req) {
const params = Object.assign(req.query, req.body);
if (params.text) {
context.log("SMS received", params);
}
context.res = {};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment