{% extends "_root.html" %} {% block body %}

Post Authorization Request

{% if resp and resp.error %}

It looks like your server returned an error; it being {{ resp.error }}.

{% if resp.error_description %}

{{ resp.error_description }}

{% endif %} {% else %}

Your server approved the request. By claiming a token, that'll communicate to this testing server which scopes you've given it permission to. By claiming a profile, you'll give this testing server information about who/what gave permission to this now-successful authorization request.

Or you can start this over at the client.

{% endif %} {% endblock body %}