4,866 questions
0
votes
0
answers
46
views
How to sync Fundraise Up webhook data to external authentication provider?
I'm integrating Fundraise Up donations with a membership system that needs authentication. When a user donates, Fundraise Up sends a webhook with donor information, and I need to automatically create/...
Best practices
0
votes
2
replies
95
views
How to verify webhook signatures from multiple providers (Stripe, GitHub, Shopify, etc.) in Go?
I'm building a webhook handler that needs to accept webhooks from multiple providers (Stripe, GitHub, Shopify, Twilio, etc.). Each provider uses different signature verification methods:
- Stripe: ...
0
votes
0
answers
74
views
How to set the Elevenlabs webhook type programmatically?
I am using ElevenLabs for transcribing audio (speech to text), and want to create a webhook which will be triggered once audio transcription is complete.
I found that you must specify the webhook type ...
0
votes
0
answers
32
views
I want to use ngrok's .app domain in python so I can use the whatsapp api
I'm using ngrok Free to expose a local server. The problem is that ngrok always assigns me a domain: xxxxx.ngrok-free.dev and I need the domain to be .app because WhatsApp Cloud API does not accept ....
0
votes
0
answers
76
views
Zoom Server-to-Server OAuth App – “URL validation failed” & “Invalid redirect” issues using Laravel (ngrok / Cloudflare Tunnel)
I'm building a Server-to-Server OAuth Zoom App for my Laravel project, and I'm facing two issues during setup:
1. Zoom Webhook – “URL validation failed. Try again later.”
I’m using a local ...
1
vote
1
answer
51
views
Flutterwave Webhook Not Triggering in Production (Works on Development)
I am integrating Flutterwave payments in my project(Node.js/Express).
In development, deposits work correctly:
User pays;
Flutterwave triggers the webhook;
Payment gets verified and the user balance ...
Best practices
0
votes
0
replies
42
views
Why prefer webhooks to CDC?
QuickBooks Online's API documentation includes a recommendation that users use webhooks instead of change-data-capture to synchronize their entity records with QuickBooks's. Why are webhooks ...
0
votes
0
answers
87
views
Is it reasonable to use Cloud storage for async webhook processing on Cloud Run
I'm processing webhooks on Cloud Run (Django) that need async handling because processing takes 30+ seconds but the webhook provider times out at 30s.
Since Cloud Run is stateless and spins up per-...
0
votes
0
answers
39
views
Paypal: sandbox webhook works, when switched to live - nothing
So here is my problem... I setup everything in sandbox environment including a webhook (PAYMENT.CAPTURE.COMPLETED event). Everything works perfectly, my API gets called and logs appear on dashboard.
...
0
votes
0
answers
51
views
Paypal webhook simulator not firing
To test a PayPal integration that also reacts to webhook events, I have created an endpoint https://example.com/paypal/webhook (POST) that logs all requests to see whether webhook calls are received ...
1
vote
0
answers
84
views
'Invalid webhook signature' when using ngrok for stripe webhooks
When I use localhost directly for webhook callback e.g.
stripe listen --forward-to localhost:<port>/webhooks/stripe
and trigger an event e.g.
stripe trigger payment_intent.succeeded
webhook ...
0
votes
1
answer
70
views
Webhook requires pooling on client side after data is pushed to webhook endpoint?
I do not understand the real difference between webhooks and traditional pooling of endpoints because to me webhooks still require pooling.
**Traditional case: Client asks, server tells
**
In a ...
0
votes
2
answers
92
views
Docusign connect event Notification (Rest API) not being received by Microsoft Teams
After working for some time with Docusign's API I thought it would be a good idea to look into the API's 'Connect' feature (https://developers.docusign.com/docs/esign-rest-api/reference/connect/).
...
0
votes
1
answer
71
views
Why Github webhook deliveries list is empty while push is happening?
I am troubleshooting a problem with connection between Github and Jenkins, but it looks like the Github webhook deliveries list is completely empty despite having multiple branches with push happening....
1
vote
0
answers
83
views
RabbitMQ Error: "PRECONDITION_FAILED - reply consumer cannot acknowledge" Code: 406
I'm trying to get a response from a webhook and send it to rabbitmq if it works, consume it with ack if not, with nack to repeat the webhook process for payments or document validations, but I'm not ...