All Questions
5 questions
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
2k
views
How do I handle a 403 error with Stripe Webhooks and Firebase Cloud Functions 2nd Gen?
Im new in using Firebase Cloud Functions 2nd Gen
I had created a Payment link in Stripe and I want when user buy the item and completed,
the Stipe Webhooks will send info to my cloud functions so that ...
0
votes
1
answer
494
views
stripe webhook with firebase showing error
it is showing Unexpected value for STRIPE_SIGNING_SECRET error even after checking it many times in the env file
the terminal shows everything created but it does not reach firebase database I am ...
6
votes
2
answers
5k
views
End conversation using Dialogflow Fulfillment Library v2 on firebase?
How do i set the "end conversation" flag using the Dialogflow Fulfillment Library WebhookClient class? I'm using the inline editor powered by Cloud Functions for Firebase, in case that matters.
The ...
0
votes
2
answers
212
views
How does Firebase javascript .on('value') callbacks work?
I am wondering how one could go about implementing something similar to what firebase does with:
firebaseRef.on('child_removed', function(oldChildSnapshot) {
// code to handle child removal.
});
...