Home Frequently Asked Questions
Options

Why do I keep getting prompted for credentials when doing an HTTPS GET transaction?

When doing an HTTPS GET request to the server, the Query value needs to be URL-encoded. Failure to properly encode can potentially cause rejection of the entire request, or incorrect responses from the server. For example, instead of sending Query=(ID=0+), use Query=(ID=0%2B). Instead of sending Query=(ID=1234,5678), use Query=(ID=1234%2C5678).A complete URL encoding reference can be found here:
http://www.w3schools.com/tags/ref_urlencode.asp

Sign In or Register to comment.