Using the current GetPostSelf I've run into problems when sending large (over 6k chars) payloads since payloads get encoded and added to the URL. I've run into two different times where this has raised an issue.
Once just a random 400 error (reproducible) and the second time -with a larger payload- it gave me a 414 URI too long error (reproducible as well)
This could be fixed by sending the body in the actual body of the request.
I've started some changes here that should be non-breaking, but would like to know if you're also working on something like this?
Using the current
GetPostSelfI've run into problems when sending large (over 6k chars) payloads since payloads get encoded and added to the URL. I've run into two different times where this has raised an issue.Once just a random
400error (reproducible) and the second time -with a larger payload- it gave me a414URI too long error (reproducible as well)This could be fixed by sending the body in the actual body of the request.
I've started some changes here that should be non-breaking, but would like to know if you're also working on something like this?