fn callback_path_of(url: &str) -> Option<String>
Extracts the path component of a callback URL (https://h/p?x → /p). Mirrors the APISIX regex .+//[^/]+(/.*).
https://h/p?x
/p
.+//[^/]+(/.*)