-
as seen on Stack Overflow
- Search for 'Stack Overflow'
If I want to Webhooks-enable a web application (I'm referring to the server-side of things, ie the server where the event happens and the callback is initiated from), are there libraries for this, or is this functionality typically part of the web server stack?
Or, am I looking at this incorrectly…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've been reading about Webhooks and I'm trying to determine if it's a specification vs a style/pattern.
By "specification" I mean that the implementation details, e.g. headers, payload and so on are well defined. By "style" or "pattern" I mean in the sense that REST is a style (as opposed to a…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am testing out webhooks and I created a postbin test url and I am trying to create a webservice that would listen to the postbin url and be able to get the values out of the post, but I am not sure how to do this: My sample postbin url could be http://www.postbin.org/abcdef
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm curious if it's common practice outside of the GAE platform to be able to defer tasks to background workers via webhooks.
I find it particularly useful to speed up the front-end of webapps, by delegating any long process to background tasks.
I'd like to hear about open source software allowing…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I'm trying to add data from a webhook (from a web cart) to a local Microsoft SQL Server. It seems like the best route for me is to use a PHP script to listen for new data (POST as json), parse it, then query to add to MSSQL.
I'm not familiar with security concerning the connection between the PHP…
>>> More