{% extends "base.html" %} {% block content %}

Welcome to AutoLogin

AutoLogin is a utility that makes it easier for web spiders to access content behind logins. Provide it with a URL (normally the homepage), and a set of valid login credentials and it will search the page for login forms and attempt to login for you. Cookies are returned to be used by your spider.

AutoLogin can be used as a library, on the command line, or as a service.

Try it out

{% with messages = get_flashed_messages(with_categories=True) %} {% if messages %}
{% for category,message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% if login_cookies %}
{{ login_cookies }}
{% endif %} {% if login_links %}
{{ login_links }}
{% endif %}

API

HTTP Method URI Type Fields Action
POST http://[hostname]/login-cookies/ json url, username, password Retrieve authorized login cookies for URL

{% endblock %}