aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Userinfo.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-08-12 14:03:36 +0200
committerMario <mario@mariovavti.com>2018-08-12 14:03:36 +0200
commit26f51ece9081e3994fd591906b5ccc608cfbf709 (patch)
tree2301c291a1d673bab9e42912c1c15efe7d0db07b /Zotlabs/Module/Userinfo.php
parent5ff0f09a4509955dede91fdb38711e1c389c9ae4 (diff)
parent0b31c677f253907ee9a36e12ae51763b2d69a574 (diff)
downloadvolse-hubzilla-26f51ece9081e3994fd591906b5ccc608cfbf709.tar.gz
volse-hubzilla-26f51ece9081e3994fd591906b5ccc608cfbf709.tar.bz2
volse-hubzilla-26f51ece9081e3994fd591906b5ccc608cfbf709.zip
Merge branch 'oauth2' into 'dev'
Fixes to OAuth2 connect-with-openid. Add zothash Claim. Add zotwebbie Claim. See merge request hubzilla/core!1254
Diffstat (limited to 'Zotlabs/Module/Userinfo.php')
-rw-r--r--Zotlabs/Module/Userinfo.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/Zotlabs/Module/Userinfo.php b/Zotlabs/Module/Userinfo.php
new file mode 100644
index 000000000..6c881f078
--- /dev/null
+++ b/Zotlabs/Module/Userinfo.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Zotlabs\Module;
+
+use Zotlabs\Identity\OAuth2Storage;
+
+
+class Userinfo extends \Zotlabs\Web\Controller {
+
+ function init() {
+ $s = new \Zotlabs\Identity\OAuth2Server(new OAuth2Storage(\DBA::$dba->db));
+ $request = \OAuth2\Request::createFromGlobals();
+ $s->handleUserInfoRequest($request)->send();
+ killme();
+ }
+
+}