- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for login_url (0.06 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc5FormScheme.java
final String originalLoginUrl = getParameter(LOGIN_URL); final String loginUrl = replaceCredentials(credentials, originalLoginUrl); final String loginReqParams = replaceCredentials(credentials, getParameter(LOGIN_PARAMETERS)); if (StringUtil.isBlank(loginUrl)) { if (logger.isDebugEnabled()) { logger.debug("No login.url");
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 13:09:59 GMT 2026 - 15.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc4FormScheme.java
final String originalLoginUrl = getParameter(LOGIN_URL); final String loginUrl = replaceCredentials(credentials, originalLoginUrl); final String loginReqParams = replaceCredentials(credentials, getParameter(LOGIN_PARAMETERS)); if (StringUtil.isBlank(loginUrl)) { if (logger.isDebugEnabled()) { logger.debug("No login.url");
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 14.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java
* <pre>{@code * WebAuthenticationConfig config = new WebAuthenticationConfig(); * config.setHost("example.com"); * config.setAuthSchemeType(AuthSchemeType.FORM); * config.setFormParameters(Map.of( * "login_url", "http://example.com/login", * "login_method", "POST", * "login_parameters", "user=${username}&pass=${password}" * )); * config.setCredentials(credentialsConfig); * }</pre> */
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Fri Jan 09 23:46:52 GMT 2026 - 6.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
final Map<String, String> params = new HashMap<>(); final String[] keys = { "encoding", "token_url", "token_pattern", "token_name", "token_method", "token_parameters", "login_method", "login_url", "login_parameters" }; for (final String key : keys) { final String value = hc4Form.getParameter(key); if (value != null) { params.put(key, value); }
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
final String loginUrl = auth.login(null, authnRequestParams, true); request.getSession().setAttribute(SAML_STATE, UuidUtil.create()); return new ActionResponseCredential(() -> HtmlResponse.fromRedirectPathAsIs(loginUrl)); } catch (final Exception e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3)