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

Authorization Code Retrieved!

We have been given an Authorization Code from the OAuth2.0 Server:

  Authorization Code: {{ code }}  

Now exchange the Authorization Code for an Access Token:

make a token request

usually this is done behind the scenes, but we're going step-by-step so you don't miss anything!
{% if app.request.get("id_token") %} {% include 'client/_id_token.twig' with { id_token: app.request.get("id_token") } %} {% endif %} back {% endblock %}