Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/opencv/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在pentaho bi url中传递登录凭据_Pentaho_Pentaho Cde - Fatal编程技术网

如何在pentaho bi url中传递登录凭据

如何在pentaho bi url中传递登录凭据,pentaho,pentaho-cde,Pentaho,Pentaho Cde,使用GET方法的请求参数工作正常,但我不想在URL中显示凭据,post方法不工作 requestParameterProcessingFilter : http://jira.pentaho.com/browse/BISERVER-10708 <html> <form action="http://localhost:8080/pentaho/api/repos/ublic:Company:Reporting:Test:Test2.prpt/report?&outpu

使用GET方法的请求参数工作正常,但我不想在URL中显示凭据,post方法不工作

requestParameterProcessingFilter : http://jira.pentaho.com/browse/BISERVER-10708

<html>
<form action="http://localhost:8080/pentaho/api/repos/ublic:Company:Reporting:Test:Test2.prpt/report?&output-target=pageable%2Fpdf" method="post">
<input type="hidden" name="userid" id="userid" value="admin"/>
<input type="hidden" name="password" id="password" value="password"/>
<input type="submit" value="Submit">
</form>
</html> 
requestParameterProcessingFilter:http://jira.pentaho.com/browse/BISERVER-10708

我不希望这样


你应该考虑是否允许匿名访问Pentaho。您可以在信息中心找到它。

我不确定这是否有帮助,但您可以尝试使用授权标题。其中标头的值为
“Basic”+Base64.encode64(用户名+”:“+密码)

您好,在信息中心中仅提及get方法,但对于post方法无效。与支付网关类似,请查看信息中心,了解有关启用匿名访问的信息。你试图做的事情行不通。请检查我关于如何授予匿名访问权限的答案。