Google search appliance GSA Cookie Auth-“认证”;登录表单没有';t同时输入文本和密码“;

Google search appliance GSA Cookie Auth-“认证”;登录表单没有';t同时输入文本和密码“;,google-search-appliance,Google Search Appliance,我似乎无法找出用于设置cookie身份验证的登录表单的错误,GSA在以通用登录表单提交凭据后向我抛出此错误(服务日志): Got form; name=customlogin clientLogin; action=/content/marketing/en/login/j_security_check; type=hidden, name=resource; type=hidden, name=_charset_; type=hidden, name=j_username; type=hidd

我似乎无法找出用于设置cookie身份验证的登录表单的错误,GSA在以通用登录表单提交凭据后向我抛出此错误(服务日志):

Got form; name=customlogin clientLogin; action=/content/marketing/en/login/j_security_check; type=hidden, name=resource; type=hidden, name=_charset_; type=hidden, name=j_username; type=hidden, name=j_password
Login form doesn't have both text and password inputs
Error in authentication module: Login form doesn't have both text and password inputs
以下是我正在使用的表单:

<form method="POST" action="/content/marketing/en/login/j_security_check" id="form_customlogin" name="customlogin clientLogin" enctype="multipart/form-data" onsubmit="return cq5forms_validate_customlogin();">
                    <input type="hidden" name="resource" value="/content/operations/apps/en.html" />
                    <input type="hidden" name="_charset_" value="UTF-8" />
                    <input id="username" type="hidden" name="j_username" value="anonymous-user" />
                    <input id="password" type="hidden" name="j_password" value="anon" />
                    <p>
                      Or go straight through as a 
                      <a href="#" onclick="$('#form_customlogin').submit();">guest</a>
                       (limited access)
                    </p>
</form>


或者直接作为一个
(访问受限)

有人知道GSA如何使用表单吗?非常欢迎

提前谢谢

编辑:显然,inputfilds user/pw必须具有用户名和密码类型,它们不能隐藏。
这已经是一个功能请求。

用户名字段必须是type=“text”,没有type=“username”。出于好奇,你为什么要把它们藏起来


通常,当您有复杂的登录表单时,您最好只为GSA创建一个单独的登录表单,该表单不包含任何JavaScript或其他古怪内容。

谢谢Dave。它实际上是一个网站的一种形式,我正试图为PoC建立索引。我发送了一个更改输入字段的请求。