wiremock-webhooks-extension icon indicating copy to clipboard operation
wiremock-webhooks-extension copied to clipboard

Webhook simulation for WireMock

Results 13 wiremock-webhooks-extension issues
Sort by recently updated
recently updated
newest added

Proposal for issue: [GH-11](https://github.com/wiremock/wiremock-webhooks-extension/issues/11) Defining multiple webhooks is possible via json config like ```json { "request" : { "urlPath" : "/something-async", "method" : "POST" }, "response" : { "status" :...

this is my template { "request": { "method": "POST", "url": "/api/mytestingwebhooksextension" }, "response": { "status": 200, "body": "{\"id\":\"{{jsonPath request.body '$.Object.id'}}, \"udid\":\"{{randomValue type='UUID'}}\"}\"" }, "postServeActions" : { "webhook" : { "headers"...

How to perform in wiremock-standalone? Ex: java -jar wiremock.jar --extensions wiremock-webhooks-extension

Is there an option to send a post serve action with delay? thanks

A follow up from the discussion on https://github.com/wiremock/wiremock-webhooks-extension/pull/20 This change adds a delay parameter to the webhook definition. Thanks for the feedback @tomakehurst, I also would have preferred ```java.time.Duration``` but...

`# clone repo` `git clone https://github.com/rodolpheche/wiremock-docker.git` `# prepare extension folder` `mkdir wiremock-docker/samples/random/extensions` `# download extension` `wget http://central.maven.org/maven2/org/wiremock/wiremock-webhooks-extension/1.0.0/wiremock-webhooks-extension-1.0.0.jar -O wiremock-docker/samples/random/extensions/wiremock-webhooks-extension-1.0.0.jar` `# run a container using extension` `docker run -it --rm \...

Hello, How can I request multiple webhooks per mapping ? -- Thanks, Andrei

The extensions build depends on ```2.21.0``` but we see [wiremock releases](https://github.com/tomakehurst/wiremock/releases) are up to ```2.26.x```. Is there any reason to let these dependencies fall out of sync?

In GH-5 we address dynamic webhooks by creating transformers to our webhooks and in GH-7 we will export webhook definitions as templates. Given the templates, we should also integrate with...

I have some mocks with the standalone versión and work great! Now I want mock some callbacks in my project to complete al integrations. In a post in google groups...