{% extends "client/base.twig" %} {% block content %}

Token Retrieved!

  Access Token: {{ response.access_token }}  
{% if response.expires_in %}
Expires in {{ response.expires_in }} seconds
{% endif %}

Now use this token to make a request to the OAuth2.0 Server's APIs:

make a resource request
This token can now be used multiple times to make API requests for this user.
{% if response.id_token is defined %} {% include 'client/_id_token.twig' with { id_token: response.id_token } %} {% endif %} back {% endblock %}