Closed DaniKemper closed 3 years ago
Hi,
I’ve tested the PR and it passes the tests, however the current master branch also works for me. It happens to be that the picnic api sometimes has some strange hiccups, could you maybe share your errors and how I could replicate them?
Hi,
I get a delivery id by calling the following method: picnic.get_deliveries(summary = True)
. After that I want the load the delivery. This is done by calling picnic.get_delivery(deliveryId = args['id'])
. But I get the following response back:
If I change the method to a GET
request instead of a POST
request, everything seem to work fine.
Thanks for your clarification, it seems that I'll have to put in some time into error handling + writing proper unit tests
Picnic made changes to their api, if I tried to get a delivery, I got the following error: "Request method 'POST' not supported". This error is fixed by making a get request, instead of a post request.