The reason using a "secret URL" is often considered insecure is not because it is "security through obscurity". In theory, a secret URL is no different than a password. Are passwords considered a poor practice because they are "security through obscurity"? No.
So what's the difference between a hard-to-guess URL and a hard-to-guess password?
The difference is in the myriad of insecure places and ways that URLs are stored, displayed, and transmitted. Examples:
- In web browser URL bars, history, and cache
- In web server access logs
- In layer 7 firewall access logs
- In proxy access logs
- In packet dumps (if you're not using HTTPS)
- Web browser HTTP Referer headers
- In web stats traffic reports (e.g. AWStats, Google Analytics)
In the right environment, hard-to-guess URLs can be secure. But when using common web browsers, web servers and web frameworks, hard-to-guess URLs should not be relied upon, for the reasons listed above.
To put it another way: most software (web clients and web servers) don't go to much trouble to keep URLs secret. So while your URLs may be hard to guess in isolation, your software is probably busily creating insecure unencrypted logs and databases of all those secret URLs.