From 96eb5745754824a2a75698af4b60cc0a84c890ea Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 29 Feb 2024 20:30:14 +0100 Subject: Updated 9 files (automated) --- auth/callback/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auth/callback') diff --git a/auth/callback/index.php b/auth/callback/index.php index 9697e63..e808dd1 100644 --- a/auth/callback/index.php +++ b/auth/callback/index.php @@ -21,7 +21,7 @@ curl_setopt($crl, CURLOPT_HTTPHEADER, [ "Content-Type: application/x-www-form-urlencoded", "Accept: application/json" ]); -curl_setopt($crl, CURLOPT_POSTFIELDS, "grant_type=authorization_code&redirect_uri=" . urlencode("https://ponycule.equestria.horse/auth/callback") . "&code=" . $_GET['code']); +curl_setopt($crl, CURLOPT_POSTFIELDS, "grant_type=authorization_code&redirect_uri=" . urlencode("https://ponycule.p.equestria.dev/auth/callback") . "&code=" . $_GET['code']); $result = curl_exec($crl); $result = json_decode($result, true); -- cgit