-
-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebHook Related Issues #1259
Labels
Comments
Additional Question. {
"Request": {
"Path": {
"Matchers": [
{
"Name": "WildcardMatcher",
"Pattern": "/api/transaction-online-multiple"
}
]
},
"Methods": [
"POST"
],
"Body": {
"Matcher": {
"Name": "JsonPartialMatcher",
"Pattern": {
"transactions": [
{
"sourceBankCode": "99",
"countryCode": "NG",
"sourceAccount": "1234567890",
"amountCurrency": "NGN"
}
]
}
}
}
},
"Response": {
"StatusCode": 200,
"BodyAsJson": {
"statusCode": null,
"statusMessage": null,
"batchReferenceNo": "{{request.bodyAsJson.batchId}}",
"eventID": "{{request.bodyAsJson.transferType}}"
},
"Headers": {
"Content-Type": "application/json"
},
"UseTransformer": true
},
"Webhooks": [
{
"Request": {
"Url": "https://webhook.site/e5b518cc-5fd3-4db8-8e51-c7a648cc42b5",
"Method": "POST",
"Headers": {
"Content-Type": "application/json"
},
"BodyAsJson": {
"message": "Webhook triggered!",
"status": "success"
},
"UseTransformer": true,
"TransformerType": "Handlebars",
"TransformerReplaceNodeOptions": "EvaluateAndTryToConvert",
"Delay": 1000
}
}
],
"UseWebhooksFireAndForget": true
} |
Just made another discovery. see sample mapping below {
"Request": {
"Path": {
"Matchers": [
{
"Name": "WildcardMatcher",
"Pattern": "/api/transaction-online"
}
]
},
"Methods": [
"POST"
],
"Body": {
"Matcher": {
"Name": "JsonPartialMatcher",
"Pattern": {
"transactions": [
{
"sourceBankCode": "99",
"countryCode": "NG",
"sourceAccount": "1234567890",
"amountCurrency": "NGN"
}
]
}
}
}
},
"Response": {
"StatusCode": 200,
"BodyAsJson": {
"statusCode": null,
"statusMessage": null,
"batchReferenceNo": "{{request.bodyAsJson.batchId}}",
"eventID": "{{request.bodyAsJson.transferType}}"
},
"Headers": {
"Content-Type": "application/json"
},
"UseTransformer": true
},
"Webhook": {
"Request": {
"Url": "https://webhook.site/e5b518cc-5fd3-4db8-8e51-c7a648cc42b5",
"Method": "POST",
"Headers": {
"Content-Type": "application/json"
},
"BodyAsJson": {
"message": "Webhook triggered!",
"status": "success"
},
"UseTransformer": true,
"TransformerType": "Handlebars",
"TransformerReplaceNodeOptions": "EvaluateAndTryToConvert",
"Delay": 1000
}
},
"UseWebhooksFireAndForget": true
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Bug 1 (WebHook does not support Local Requests)
When trying to use the
WebHook
functionality to initiate a webhook, for online webhook URLs it works but for local ones, the receiving service receives no request.Expected behavior:
It should work the same both for online and local webhooks.
Test to reproduce
Dummy
Api project followed by the "WireMockBug001" project. (In case you get an error the first time you run the Demo, close it and run again.).Bug 2 (WebHook does not post request body when using
Body
instead ofBodyAsJson
)When trying to use the
WebHook
functionality to initiate a webhook,BodyAsJson
works butBody
doesn't.Expected behavior:
It should work the same both for
Body
andBodyAsJson
.Test to reproduce
BodyAsJson
and uncommentBody
. do same forpost-transaction-local.json
Dummy
Api project followed by the "WireMockBug001" project. (In case you get an error the first time you run the Demo, close it and run again.).Other related info
Docker is needed to run the Demo as it uses WireMock.NET Test Container.
The text was updated successfully, but these errors were encountered: