Hello,

So I am trying to use the Webhook tool to send notifications about the orders I make. The server which I am sending the notifications to requires that I provide authorization in a header that goes along with any post requests that I make. So, I would like to do a webhook notification with a header.The webhook notification has the following form: self.Notify.Web("myServer.com", data). It has only two parameters, the website, and the data. So unfortunately there does not seem to be a way of adding in the header that I need for authentication. Is there some other way to do this? When I tried just using the post function from the requests library in python, I got an error. Thanks in advance for any help!

Author