Keycloak to IndieAuth translator (mirror of https://git.jbc.lol/jbcrn/KcIA)

also on redirect uri

+4
+4
src/index.js
··· 42 42 client_id = "https://" + client_id 43 43 } 44 44 45 + if (!redirect_uri.startsWith("http")) { 46 + redirect_uri = "https://" + redirect_uri 47 + } 48 + 45 49 const clientUri = new URL(client_id).hostname.replaceAll('.', '-'); 46 50 47 51 let clientName = clientUri.hostname, clientIcon;