If I need to make get request to an html page and thus pass a secret via the url using https, is it true that I'd need to pass it in a query string versus a part of a path url?
my_domain.com/some_url/my_secret123 --> bad
my_domain.com/some_url?secret=my_secret123 --> good
Based on the fact that in https a query string doesn't appear in logs, whereas the url itself, including all its "/" parts - does.