Autologin works automatically, as the name says If the user's browser still has the cookies from the last session, then the user will be logged in automatically. If you mean implementing something like single sign-on, where the login happens outside the browser, then you can either specify the session ID as URL fragment (i.e. https://oxserver/path#session=0123...789) or use the redirect action from the HTTP API
Comment