Question
How to create autologin using an API request in Plesk?
Answer
Note: This article may require additional administrative knowledge to apply. If any help required, contact server’s administrator or hosting support.
1. Log in to Plesk server via SSH or a Linux workstation.
2. Create an XML file with the following content (in this example it will be named
):
request.xml
<?xml version='1.0'?>
<packet version="1.6.3.5">
<server>
<create_session>
<login>TEST_USER</login>
<data>
<!-- Base64-encoded IP address of client, who logs into Plesk -->
<user_ip>MTkyLjE2OC4zNC4xOTI=</user_ip>
<!-- Base64-encoded hostname of computer from which the request is sent -->
<source_server>d3BiLXNpdGUudGxk</source_server>
</data>
</create_session>
</server>
</packet>
Session token will be created for the user identified by login.
3. Send created XML file to Plesk using
:
curl
# curl -kLi -H "Content-Type: text/xml" -H "HTTP_AUTH_LOGIN: admin" -H "HTTP_AUTH_PASSWD: PASSWORD" -H "HTTP_PRETTY_PRINT: TRUE" -d @request.xml https://<server-hostname-or-ip>:8443/enterprise/control/agent.php
NOTE : Only '
' user is able to create session token for clients/resellers logins.
admin
Response will look like the following:
<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.3">
<server>
<create_session>
<result>
<status>ok</status>
<id>ede520d0fc93ae7aa0524076d631fba2</id>
</result>
</create_session>
</server>
</packet>
Value of
tag will contain session token. In this example, '
id
'.
ede520d0fc93ae7aa0524076d631fba2
Now, the script can redirect user’s browser to
and user will be logged in to Control Panel.
rsession_init.php
4. Login to Plesk using the session token:
For Linux:
https://<server-hostname-or-ip>:8443/enterprise/rsession_init.php?PHPSESSID=ede520d0fc93ae7aa0524076d631fba2&success_redirect_url=<success_redirect_url>
For Windows:
https://<server-hostname-or-ip>:8443/enterprise/rsession_init.php?PLESKSESSID=ede520d0fc93ae7aa0524076d631fba2
Here is the list of options:
-
(Linux only) - session token.
PHPSESSID
-
(Windows only) - session token.
PLESKSESSID
-
(optional) - URL where browser will be redirected after successful login procedure.
success_redirect_url
-
(optional) - URL where browser will be redirected after failure login attempt. Also this parameter will be used as logout URL.
failure_redirect_url
-
(optional, deprecated) - show admin panel without frames
no_frames
-
(optional) - locale name (e.g. de-DE)
locale_id
Additional information is available in XML API Guide