All Questions
Tagged with webhooks javascript
254 questions
0
votes
1
answer
27
views
How to handle an slow request of Stripe webhook?
Following the Stripe documentation I come to create a webhook endpoint on my app to catch the customer.subscription.created event, which I use as a signal to create a new account in my database.
I'm ...
1
vote
0
answers
108
views
How to correctly get transaction status via tonapi.io webhooks?
I'm integrating TON API and trying to set up receiving transaction notifications via webhooks. However, I'm facing an issue where TON API returns 401 Unauthorized or illegal base32 data at input byte ...
0
votes
1
answer
69
views
How should I edit the code for sending messages from Google Script to Discord?
function doPost(e) {
// ตรวจสอบว่ามีข้อมูลส่งมาจาก Tradingview เข้ามาหรือไม่
if (!e || !e.postData || !e.postData.contents) {
return ContentService.createTextOutput("No POST data received....
2
votes
0
answers
40
views
Unable to send signal to my scheduled workflow?
I have a workflow where I send a request to an endpoint and returns a job Id. Once the job completes it will send a webhook message to my endpoint and this is where I want to send a signal back to my ...
0
votes
0
answers
55
views
run script after load more button is clicked
I am using the Smash Balloon custom facebook feed pro plugin on wordpress. I have written a php script the alters the $content on the page with the facebook feed so that it changes the links in the ...
0
votes
1
answer
45
views
channel.createWebhook causes 'no such file or directory' error
I am creating a bot in Discord.js v14, I am trying to make a simple modmail bot, but when attempting to create the webhook, I get a very strange error which doesn't look like it has any connection ...
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 ...
1
vote
0
answers
159
views
JSON input from Google-AppSheet not sending notifications to Telegram
So currently I'm in a small project to create an automatic notification in Telegram based on given input from AppSheet. I've created a bot within the AppSheet, using Webhook and applied codes within ...
0
votes
0
answers
74
views
Handling Square Terminal Transactions with Webhooks
I'm relatively new to working with webhooks and I'm currently integrating Square Terminal transactions into my web application. Specifically, I'm trying to implement a workflow where I can display a ...
1
vote
0
answers
407
views
Lemonsqueezy webhook x-signature returns invalid every time
I'm doing an integration of my app with Lemonsqueezy and use webhook to get data about subscriptions. I use everything from LS official guides, however I receive invalid x-signature used to validate ...
0
votes
0
answers
55
views
Firebase cloud function to respond within 3 seconds but continue running
I have a Streamchat webhook that triggers a Firebase Cloud Function everytime a chat is sent. The webhook expects a response within 3 seconds but my logic takes longer than that to run. How can I make ...
0
votes
1
answer
229
views
How can I deliver simple text and clickable URLs via a Teams chat webhook without the text being clipped short?
My humble goal is to do in Teams what can be so easily done with Slack Webhooks, like this:
await fetch(slackWebhook, {
method: 'POST',
headers: {
'Content-Type': '...
0
votes
0
answers
2k
views
<w>[webpack.cache.PackFileCacheStrategy]Serializing big strings(101kiB)impacts deserialization performance(consider using Buffer instead&decode when n
something wrong with my mongoDB connection or clerkid or webpack. its not fetching userids and also showing // This is a native JavaScript error (e.g., TypeError, RangeError)
17 | console.error(...
1
vote
0
answers
379
views
How can I use APISetu to get documents from DigiLocker
I am trying to integrate DigiLocker APISs into my program. I am confused about lots of things, I need stepwise details to use DigiLocker to perform the following tasks:
First open DigiLocker page for ...
0
votes
1
answer
80
views
Sending a embeds from Script to Discord via Webhook - Components not working
I'm facing an issue and i also tested it via -curl with no other results.
Basically i'm sending a json like this:
"embeds": [
{
"title": "A title",
&...