Automatically Login to Zoho Account
I know this is not really a supported feature, but I had previously devised a way to accomplish this. Unfortunately, my solution has broken and I'm unable to get it to work now. I thought I'd post it and see if anyone has an idea of what changed or how to correct the script.
- <!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: "XXXXX", PASSWORD: "XXXXX", IS_AJAX: "true", remember :-1, servicename: "ZohoReports"},
- dataType: "jsonp",
- timeout: 200000,
- complete: function() { location.href="https://reports.zoho.com";}
- });
- });
-
- </script>
- </head>
- <body>
- </body>
- </html>