Hi all
I’m using an implementation of the basic java quickstart using an authorizeurl.
String authorizeUrl = authenticationController.buildAuthorizeUrl(req, redirectUri)
.withAudience(String.format("https://%s/userinfo", domain))
.withParameter("scope", "openid profile email")
.build();
How can I add custom a custom logo to the url?
I would assume something like: .withParameter(“theme”, “logo : ‘mylogo.com’”);
But this doesn’t work…
And in the same way, how can I turn off the sign-up section of the lock?
Thanks in advance