1

我之前创建了一个脚本,当用户单击链接时,该脚本会自动将用户登录到 Zoho 报告中。本质上,它允许通过共享用户 ID 进行单点登录以访问 Zoho Reports。

这个脚本已经工作了很长时间,但不再起作用了。

这是旧脚本:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title></title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
    <script>

    $(document).ready(function() {

    $.ajax({  
        type:"GET",        
        url: "https://accounts.zoho.com/login",  // Send the login info to this page
        data: { LOGIN_ID: "username", PASSWORD: "password", IS_AJAX: "true", remember :-1,  servicename: "ZohoReports"}, 
        dataType: "jsonp", 
        timeout: 200000,
        complete: function() { location.href="https://reports.zoho.com";}      
    });
    });

    </script>
</head>

<body>
</body>
</html>

我已经尝试对脚本进行多次修改,但我没有任何运气。如果有人有一些想法,我很乐意听到。

4

1 回答 1

0

您是否为所有用户使用一个登录名?我想您可以使用的并发登录数是有限制的。请咨询 Zoho Accounts 支持。

于 2013-06-21T04:57:25.583 回答