diff --git a/consent_provider/app.py b/consent_provider/app.py
index dd1b908d6c74963d9e6cac961b59dc1735d07474..8c1cc284bed3bc7d3bc9898fecac8cebbb75c8b5 100644
--- a/consent_provider/app.py
+++ b/consent_provider/app.py
@@ -15,8 +15,8 @@ def home():
     if not challenge:
         abort(400)
     consent_request = hydra.consent_request(challenge)
-    username = consent_request.client.client_name
-    app_name = consent_request.client.owner
+    app_name = consent_request.client["client_name"]
+    username = consent_request.subject
     user = User(username)
     access_granted = user.has_app_permission(app_name)
     if access_granted:
diff --git a/login_provider/app.py b/login_provider/app.py
index cff6f987ac70aaabeee39d9dd6b36d561d082cf8..acec10da7c36b6ba519d9788d449059bac07cb98 100644
--- a/login_provider/app.py
+++ b/login_provider/app.py
@@ -31,7 +31,7 @@ def home():
     if not challenge:
         return render_template('home.html', email=current_user.email, logout_form=logout_form)
     else:
-        redirect_to = hydra.login_request(challenge).accept(current_user.email)
+        redirect_to = hydra.login_request(challenge).accept(current_user.username)
         return redirect(redirect_to)
 
 @app.route('/login', methods=['GET', 'POST'])