Hi,<div><br></div><div>For the backend health polling, I had to use the .request parameter to specify the basic auth credential necessary to authenticate with the backend; I'd definitely get a 401 if I just used .url plainly. For example, using a bogus url,password of course...</div>
<div><br></div><div><div>.request =</div><div>        "GET /foo/i_is_healthy HTTP/1.1"</div><div>        "Host: 127.0.0.5"</div><div>        "Authorization: Basic ZmF0Ymxvd2Zpc2g6c29sb25nYW5kdGhhbmtzZm9yYWxsdGhlZmlzaA=="</div>
<div>        "Connection: close";</div></div><div><br></div><div>My question is: Is there a much elegant approach to this? I'd rather <i>not</i> have the base64 encoded string on a(ny) file on the server.</div>
<div><br></div><div><br></div>