{% extends "example/base.html" %} {% load url from future %} {% block content %}

Show me your token!

Error!
{% if form %}
{{ form.non_field_errors }}
The Authorization server granted me the following: {{ form.access_token }} {{ form.token_type }} {{ form.expires_in }} {{ form.refresh_token }}

Now you can try obtaining another access token using your refresh token and providing client credentials

{{ form.client_id }} {{ form.client_secret }} {{ form.token_url }} The url in your server where to retrieve the access token, it's ok if it points to localhost (e.g. http://localhost:8000/o/token/).
{% else %}

It seems you've got nothing to show :(

{% endif %} {% endblock %} {% block javascript %} {% endblock javascript %}