Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between "HTTP request" and "Webhook request" in Azure Functions?

The function.json files are very similar. Too similar for me to understand the difference.

What sorts of scenarios would I choose one over the other?

like image 806
Chris76786777 Avatar asked Jan 04 '23 17:01

Chris76786777


1 Answers

You can just consider Webhook to be a more specific version of an HTTP request. The major difference being that WebHooks are generally configured to only respond to POST requests where as HTTP Requests can be used with all REST Verbs.

like image 176
Jesse Carter Avatar answered Mar 30 '23 01:03

Jesse Carter