I have an HTTP proxy endpoint, that when tested works properly:
Request: /results?auth=abc123&id=9876&start=2016-08-20&end=2016-09-01 Status: 200 Latency: 265 ms When targeted via Postman returns the following:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html> <head> <title>400 Bad Request</title> </head> <body> <h1>Bad Request</h1> <p>Your browser sent a request that this server could not understand. <br /> </p> </body> </html> The endpoint is setup as follows (some info redacted):
There is no authentication or authorization setup (it's a direct pass through query parameter).

