All Questions
4 questions
-1
votes
1
answer
80
views
Why are the validations of signatures different?
I need to validate a signature. The code examples for signature validation are only in Python. Here is the Python function:
import hmac
import hashlib
import json
def verify_signature(key, timestamp, ...
2
votes
0
answers
135
views
After my webpage is loaded i want to send data to frontend in flask
My page is loaded but when tasks are handled in the backend the route changes the database so I want to display this new database data on my page, without any user on click event(as he is not aware). ...
1
vote
1
answer
231
views
Secure a webhook from unauthorized requests?
I wanted to make a webhook in order to change the status of a document in my collection. This will trigger other events.
Router.route('/mandrill/invitation_sent', { where: 'server' })
.post(...
1
vote
1
answer
1k
views
How do I pass a json formatted string as a payload to an iron.io worker via a webhook?
How do I submit a json formatted string to the following script with a webhook?
Below is my script on iron.io that I want to read the payload.
import sys, json
sys.argv[8]
payload_file = None
...