Skip to content

Instantly share code, notes, and snippets.

@emarthinsen
Created May 6, 2016 22:14
Show Gist options
  • Save emarthinsen/97cf545c7f46bfddabd48395e0d7b26e to your computer and use it in GitHub Desktop.
Save emarthinsen/97cf545c7f46bfddabd48395e0d7b26e to your computer and use it in GitHub Desktop.
'use strict';
module.exports = (event, context, callback) => {
console.log("Send the response: " + event.params.querystring.challenge);
callback(null, { challenge: event.params.querystring.challenge });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment