Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
779 views

What Web Applications Do You Know Using Webhooks

Description of how a webhook works from http://webhooks.pbwiki.com/ - How do they work? By letting the user specify a URL for various events, the application will POST data to those URLs when ...
4
votes
1answer
50 views

Responding to a webhook event with raw data

I'd like to write a ruleset that can respond to webhook events with raw data. The event might come in from a URL like the following: ...
4
votes
2answers
226 views

Questions on webhooks

Jeff Lindsay, who coined the term 'webhook', said that the difference between webhook and http callback is that webhooks are user-defined. I think I understand what he meant, but I was thinking about ...
3
votes
2answers
55 views

Run autotests as a result of clicking 'merge pull request' button

Is there any way to set up github web hooks in the way merge happens only in the case autotests passed on merged version? I.e I receive pull requiest and review it use 'merge pull requiest' ...
3
votes
1answer
34 views

How do I select parameters in a KRL webhook?

I want to run some KRL rules when a website is updated. The deploy script will get the following URL after pushing the updates: ...
2
votes
1answer
51 views

KRL webhooks receiving JSON

I'm trying to set up a Webhook for Amazon SNS. SNS will send a JSON object to the webhook. Based on the KRL documentation I can get the event parameters using event:param('name'). That works for form ...
2
votes
1answer
2k views

Write formatted JSON in Node.js

I'm using Node.js to POST JSON to PostBin but the data is being wrongly formated (as you can see here: http://www.postbin.org/1cpndqw). This is the code I'm using for tesT: var http = ...
2
votes
1answer
279 views

best way to setup a webhook to restart apache for a django server

I first tried to use django and then django-webhooks to call a shell script that restarts the server. This didn't work, because the webpage hangs when the server restart is called, as django is ...
2
votes
1answer
87 views

Is Webhooks a style/pattern or a specification?

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 ...
2
votes
1answer
254 views

Plugin for declaratively specifying an API in Rails like django-piston

Is there a gem/plugin for defining an API in Rails? I know you can have "RESTful routes" and render to different formats in controller actions, but I'm looking for a more all-around solution, ...
1
vote
1answer
60 views

nservicebus + webhooks +Errors +MaxRetries

Feature Description The NServiceBus gateway, http://www.nservicebus.com/Gateway.aspx, seems to be a way to achieve an internal webhook using the NServiceBus infrastructure. We need to go further ...
1
vote
2answers
59 views

Is is possible to delete a postbin.org bin?

I created a test postbin.org bin to handle some webhook testing. Is there a way to delete this bin so it's no longer accessable? Nothing sensitive was posted to it, but I'd like to remove it all ...
1
vote
1answer
31 views

Webhook Service Provider or Project

Does anyone know of a service provider or a project that will provide me with webhook functionality? Sure it's just a matter of sending a HTTP/S POST, but it should be implemented with a queue for ...
1
vote
3answers
386 views

Create Wufoo webhook with PUT request in ColdFusion

I'm having troubles with building correct PUT request to the Wufoo. In all my attempts I see the same error: 404 A WebHook must contain a url parameter. Here is the version with JSON data type: ...
1
vote
1answer
236 views

Testing Rails+Webhooks with Cucumber

I'm trying to integrate my rails application with an external service. I'm using Cucumber to do integration testing and I'd don't want to mock out the external service at times. When I get webhooks ...
1
vote
3answers
210 views

How do I debug a webhook POST?

A webhook is sending me a POST, but i want to do some debugging. currently i'm looping over the array and then sending a mail() to myself instead of printing (because how could i see what's printed to ...
1
vote
1answer
118 views

How do I restart apache from a webpage apache is serving?

I have a script server side (both a shell and a python script) that can restart Apache and do some other cleanup I need. However, I want to expose a webhook, so when my repository is updated, then ...
1
vote
1answer
152 views

Implementing the server side of Webhooks

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 ...
0
votes
1answer
16 views

php/mysql maximum connections reached

I have an application that connects to a 3rd party. They fire web-hooks simultaneously at a time. Sometimes the hooks are about 1000 and over. The problem is that, my script connects to a database and ...
0
votes
0answers
19 views

How to verify a post-recive hook request actually came from github?

Github offers a way to let a URL know when a project has been updated using webhooks. How do I verify that a post sent to my server's post-receive hook actually came from github? Should I check the ...
0
votes
0answers
7 views

What are the key features to look for in choosing an open source “webhook server”

I'm developing a solution that will offer clients web-hook callbacks, or simply web-hooks. 1) are there sample implementations one can derive from 2) what can i do to ensure that my clients receive ...
0
votes
1answer
80 views

How can I receive a HTTP POST in ASP.NET C# from Mailgun?

http://documentation.mailgun.net/quickstart.html contains some example code for a http handler in Django: # Handler for HTTP POST to http://myhost.com/messages for the route defined above def ...
0
votes
0answers
20 views

How do I fetch Campaign Monitor webhook payload with PHP?

I'm using PHP to create a system that will fetch webhook payload when someone is unsubscribing newsletters, but I can figure out how to fetch the actual payload information in PHP. Is there any POST ...
0
votes
1answer
38 views

Testing an outbound HTTP call with sockets?

I'm trying to write a unit test for a webhooks callback in django. My application is set up so that, when I run a bit of code, it sends a POST request to the URL of my choice -- this is the ...
0
votes
1answer
64 views

Capture response from webhooks

Is there a simple script that will capture POSTs from webhooks and save them to a DB, just like PostBin? Thanks, B.
0
votes
2answers
277 views

ASP.NET MVC: Specify value provider on a per-action or per-route basis?

I'm trying to set up an action in ASP.NET MVC 3 to handle the payload of a mercurial webhook request - in this case, generated by Kiln. The payload is JSON, but unfortunately it is sent as a URL ...
0
votes
2answers
78 views

Rails creating bulk objects via a web service

I'm writing a rails web-hooks service consumer that receives bulk objects in nested XML and need to save certain fields in each node. When the XML data hits my create action in my HooksController, the ...
0
votes
2answers
199 views

Node.js: Create a Web Hook

What's the easiest way of creating a Web Hook in Node.js? (POST to a URL). Thanks
0
votes
1answer
67 views

Testing http callback or webhooks

I wish to see the content of a http callback generated by an application (i.e. paypal or Google's pubsubhubbub). Does anybody know of a simple service that I can use as endpoint for a http post and ...
0
votes
1answer
31 views

standard way of setting a webserver deploy using webhooks

I am working on code for a webserver. I am trying to use webhooks to do the following tasks, after each push to the repository: update the code on the webserver. restart the server to make my ...
0
votes
1answer
170 views

How to listen for events on postbin and get the values out of it?

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 ...
0
votes
3answers
142 views

User-configurable signalling mechanism in Django

The question here is whether something like this already exists or, if not, whether there's a better way to achieve it than what I describe below. I need to allow an arbitrary Principal (User, Group, ...