All Questions
36 questions
0
votes
1
answer
58
views
how to receive webhooks events in django?
I have a webhook registered and have a php file that receives the message and dump it under text file. I want to achieve the same in django but the function never gets called when the event is ...
0
votes
1
answer
87
views
how to setup stripe webhook in django
I am working on a project where buyer will make the payment and the payment will be transferred to multiple users
is this the right way to do the split payment
how can i run my webhook
here is my code
...
1
vote
1
answer
447
views
Use Django messages framework when a webhook is called
I have set up an URL in Django that is being used as webhook from another service. It has implemented like:
@csrf_exempt
@require_POST
def hoof_alert(request):
json_rx = json.loads(request.body....
0
votes
1
answer
1k
views
How to send custom value ( unique id ) in sendgrid mail request and get this value back in the webhook provider by sendgrid
I am sending mail using sendgrid 6.10.0 sdk, but I'm unable to send the custom key value which I'll get back in the sendgrid webhook.
from_email = Email("[email protected]")
to_email = ...
1
vote
1
answer
783
views
Telegram, Python-telegram-bot==13.13, webhook
help me figure out what the error is. I redesigned the bot to work from a webhook I will receive a reply from a telegram POST /webhook/ 200 OK but the bot stopped responding to commands when I press /...
0
votes
0
answers
345
views
How to get webhook data in python
I have a webhook url from messagebird, and post requests are being sent from the LINE Messaging API to that url when some events occur. I need to get the data of those webhooks (JSON data). I'm using ...
-1
votes
1
answer
800
views
How to verify Shopify webhook in Django?
How can I verify the incoming webhook from Shopify? Shopify provides a python implementation (of Flask), but how can I do it in Django/DRF?
0
votes
1
answer
656
views
Postmark Webhook Signature Security
https://postmarkapp.com/developer/webhooks/webhooks-overview
https://<username>:<password>@example.com/webhook
Looking through the Postmark API, there does not seem to be any information ...
0
votes
0
answers
567
views
How to use multiple Stripe API keys in Djstripe webhook, is it even possible?
I'm having a hard time trying to wrap my mind around this issue - is it possible to somehow use more than just one Stripe API key in Djstripe webhook handler? If so, how?
I have two client apps, both ...
3
votes
1
answer
4k
views
Celery task worker exits with WorkerLost exception and billiard.exceptions
I have celery running on a server with my Django app, the app is listening for data being posted and once data is posted it tosses that data to a celery task. In my django admin when a lot of data is ...
2
votes
1
answer
492
views
Django CSRF verification failed. Webhook payment system
I'm trying to implement a webhook for my payment system. I have a path to my webhook view, which is a simple definition where the provided id is printed.
The usage is like this
http://localhost:8000/...
0
votes
1
answer
1k
views
Respond to Instagram webhook in Django
I set the callback-url for Instagram webhook, and when Instagram Get my callback-url I should respond to the hub.challenge to verify. Instagram GET request to my endpoint URL:
GET https://callback_url/...
0
votes
1
answer
435
views
Add twilio webhooks dynamically from a multi-tenant django application with subdomains for twiml
I have tested twilio's twiML api for sending and receiving text messages in application and it worked well.
However I had to ngrok the specific test sub-domain I was testing from as the receiving ...
1
vote
1
answer
766
views
Parse Nested Url Encoded Data from POST Request
I am currently creating a callback URL in Django for a webhook in Mailchimp where Mailchimp will send a POST request with urlencoded data in the form of application/x-www-form-urlencoded.
The issue I ...
0
votes
0
answers
715
views
How to send a post request to a 3rd party application in django?
i have made an api where i am receiving an api request about the successful payment now in the same code i have to make a post request to an other external application to notify about the payment with ...