From 8ec79e74f30eb3a8994bb1b35baf06ff18f5f3e2 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Sun, 2 Feb 2025 12:59:46 -0700 Subject: [PATCH] fixed php redirect_uri --- music/explore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music/explore.php b/music/explore.php index b38a1fc..7585d86 100644 --- a/music/explore.php +++ b/music/explore.php @@ -79,7 +79,7 @@ function get_access_token($auth_code, $client_id, $client_secret) $data = array( 'grant_type' => 'authorization_code', 'code' => $auth_code, - 'redirect_uri' => 'http://localhost/music' + 'redirect_uri' => 'https://cs2440.joshashton.dev/music' ); $client_info = base64_encode("$client_id:$client_secret");