I am using the proxy for a project and there is a site that uses semicolons in the query and go http hates it. Gives a warning. How would I go about modifying the RawQuery before onrequest to replace the semicolons?
Is that possible, I've been struggling to find a solution.
Just to be clear this is a golang http library error:
http: URL query contains semicolon, which is no longer a supported separator; parts of the query may be stripped when parsed; see golang.org/issue/25192
I am just trying to work around it and I am not sure how to achieve that!
I am using the proxy for a project and there is a site that uses semicolons in the query and go http hates it. Gives a warning. How would I go about modifying the RawQuery before onrequest to replace the semicolons?
Is that possible, I've been struggling to find a solution.
Just to be clear this is a golang http library error: http: URL query contains semicolon, which is no longer a supported separator; parts of the query may be stripped when parsed; see golang.org/issue/25192
I am just trying to work around it and I am not sure how to achieve that!