diff --git a/modules/oauth/www/authorize.php b/modules/oauth/www/authorize.php
index fe67606dd94a76530089b5444bcbfbab6e6a75df..fc09b86563515daf56bee648731460f9a3f59e20 100644
--- a/modules/oauth/www/authorize.php
+++ b/modules/oauth/www/authorize.php
@@ -33,16 +33,23 @@ $attributes = $session->getAttributes();
 
 $store->authorize($requestToken, $attributes);
 
-$t = new SimpleSAML_XHTML_Template($config, 'oauth:authorized.php');
-
-$t->data['header'] = '{status:header_saml20_sp}';
-$t->data['remaining'] = $session->remainingTime();
-$t->data['sessionsize'] = $session->getSize();
-$t->data['attributes'] = $attributes;
-$t->data['logouturl'] = SimpleSAML_Utilities::selfURLNoQuery() . '?logout';
-$t->data['icon'] = 'bino.png';
-$t->show();
-
+if (isset($_REQUEST['oauth_callback'])) {
+	
+	SimpleSAML_Utilities::redirect($_REQUEST['oauth_callback']);
+	
+} else {
+
+
+	$t = new SimpleSAML_XHTML_Template($config, 'oauth:authorized.php');
+
+	$t->data['header'] = '{status:header_saml20_sp}';
+	$t->data['remaining'] = $session->remainingTime();
+	$t->data['sessionsize'] = $session->getSize();
+	$t->data['attributes'] = $attributes;
+	$t->data['logouturl'] = SimpleSAML_Utilities::selfURLNoQuery() . '?logout';
+	$t->data['icon'] = 'bino.png';
+	$t->show();
+}