单点登录-http://help.finebi.com/finebi4.1/doc-view-221.html
按这个来
用户名和密码不是拼在URL后面的,单点登录要post的方式才行
jQuery.ajax({
url:"http://localhost:37799/WebReport/ReportServer?op=fs_load&cmd=sso",//单点登录的报表服务器
dataType:"jsonp",//跨域采用jsonp方式
data:{"fr_username":username,"fr_password":password},
jsonp:"callback",
timeout:5000,//超时时间(单位:毫秒)
success:function(data) {
if (data.status === "success") {
alert("success"); //登录成功
// document.getElementById("login").submit(); //登录成功提交表单,跳转到index.jsp这个登录成功页面
window.location=data.url;//登录成功,直接跳转到平台系统页面
}
else if (data.status === "fail"){
alert("fail");//登录失败(用户名或密码错误)
}
},
error:function(){
alert("error"); // 登录失败(超时或服务器其他错误)
}
});