Created
May 6, 2016 22:14
-
-
Save emarthinsen/97cf545c7f46bfddabd48395e0d7b26e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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