Skip to content

Instantly share code, notes, and snippets.

@rfaisal
Last active August 29, 2015 13:57
Show Gist options
  • Save rfaisal/9878495 to your computer and use it in GitHub Desktop.
Save rfaisal/9878495 to your computer and use it in GitHub Desktop.
exports.register = function (api) {
api.post('facebook', facebook);
};
function facebook(request, response) {
response.send(statusCodes.OK, { message : 'Hello World!' });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment