All Questions
369 questions
1
vote
0
answers
50
views
Stripe Checkout Metadata Missing in Webhook Events
I'm currently building a subscription flow using Stripe Checkout and tracking users through sessions with the help of metadata. I'm facing a persistent issue where the metadata (especially discordId) ...
0
votes
0
answers
18
views
Mailchimp Webhooks x-mandrill-signature or x-mailchimp-signature
I'm trying to connect a Mailchimp webhook to my application hosted with Vercel.
The webhook connects properly using an appropriate GET and POST in my app, but it cannot verify the request headers from ...
0
votes
1
answer
104
views
How to Automatically Trigger a Webhook on New Row Addition in Google Sheets Using Google Apps Script?
I’m working on a feature where a client can link their Google Sheet to my system. Whenever a new row is added to the sheet, the system should send the new order data to a webhook. My initial approach ...
0
votes
0
answers
28
views
Is there a way to get event ID from a webhook in Shopify Admin API
I am trying to get a webhook's event ID (Event - REST).
In the webhook headers I get the following
HeadersList {
cookies: null,
[Symbol(headers map)]: Map(18) {
'accept' => { name: 'accept', ...
1
vote
1
answer
109
views
Validate Twilio signature in Firebase Functions
I'm having trouble validating the delivery status request from Twilio in a Firebase Function.
I have set the webhook url on both the phone number and the Message Service to https://<region>-<...
1
vote
0
answers
55
views
Paypal Webhooks not triggering
I have set up webhooks for subscription events in the PayPal sandbox environment. The webhooks are functioning correctly when I cancel a subscription using the PayPal API; I receive the corresponding ...
0
votes
1
answer
90
views
How to Test Stripe Subscription Webhooks in Real-Time for Short Billing Cycles?
Problem
I am using Stripe to manage customer subscriptions. While customers can manage their subscriptions through the Customer Portal, there are scenarios where they don’t use it. In such cases, I ...
0
votes
1
answer
63
views
Can I have two Stripe webhook endpoints listening for the same event?
I am running into an issue since I have two webhook endpoints (/webhook/stripe and /webhook/stripe-connect) on the same server, and both listening for payment_intent.succeeded for different purposes.
...
0
votes
1
answer
56
views
Stripe Webhooks implementation and Metadata - No signatures found matching the expected signature for payload
I am currently using a server in Node. I am implementing Stripe to manage subscription payments, but I am unable to make the requests successful.
I always get the error:
No signatures found matching ...
1
vote
2
answers
241
views
Stripe webhook -Webhook Error: Webhook payload must be provided as a string or a Buffer
I am trying to console a message when payment is success using stripe for that i am using webhooks.
const stripe = require('stripe')('sk_test_'); // Replace with your actual key
const handleWebhook = ...
0
votes
0
answers
66
views
To trigger a sharepoint using webhook
The sharepoint webhook is not getting triggered. When I am trying to run it locally, I am receiving the below error:
Failed to create webhook subscription: AxiosError: Request failed with status code ...
0
votes
2
answers
135
views
Webhook Calendly with Node.js
I'm trying to use Calendly webhooks, and despise the doc, I believe that I did not get the concept of how it is supposed to work.
So here is all the steps that I did after generating a personal token ...
1
vote
1
answer
211
views
How to verify and process a Shopify webhook in Node.js on AWS Lambda with API Gateway?
I am a Shopify store owner. In the admin of my store, in Settings > Notifications > Webhooks, I've created a webhook for "order creation" and provided my endpoint URL. Shopify provides ...
0
votes
1
answer
569
views
Can we connect Instagram with Node.js to receive and send messages?
I've created a Node.js API that receives and send messages from/to my Facebook page, its a chat-bot connected with Open AI for a restaurant. I want to do the same for the Instagram, I've Instagram ...
0
votes
1
answer
253
views
webhooks of octokit are not working when i am using them through the express server
I have created a webhook handler using the octokit but the webhook server is not when when using it through the express server.
Although the docs of the octokit mention that it supports the web server ...