diff options
Diffstat (limited to 'auth/init/index.php')
-rw-r--r-- | auth/init/index.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/auth/init/index.php b/auth/init/index.php new file mode 100644 index 0000000..3a4e7b7 --- /dev/null +++ b/auth/init/index.php @@ -0,0 +1,6 @@ +<?php + +$server = "auth.equestria.horse"; + +header("Location: https://$server/hub/api/rest/oauth2/auth?client_id=" . json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/app.json"), true)["oauth"]["id"] . "&response_type=code&redirect_uri=https://ponies.equestria.horse/auth/callback&scope=Hub&request_credentials=default&access_type=offline"); +die(); |