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 address bars, histories, and caches
- In web server access logs
- In layer 7 firewall access logs
- In proxy access logs
- In packet dumps
- Web browser HTTP Referer headers
- In web stats traffic reports (e.g. AWStats, Google Analytics)
HTTPS can protect some of these, but not all of them (e.g. web browsers and httpd access logs will still show plaintext URLs even when HTTPS is in use).
In a highly controlled 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 unless no other option exists (and even then you should consider carefully).