diff options
| author | 2026-01-13 19:12:23 +0800 | |
|---|---|---|
| committer | 2026-01-13 19:12:23 +0800 | |
| commit | c4bd0ad4104123046c7637b75b0a5fd64941a296 (patch) | |
| tree | d1792efd07724a3768d148bff5ad04a776521287 /src-tauri/src/core | |
| parent | 965fa8f50a3e37ecab9688b128cc7e65bbd01057 (diff) | |
| download | DropOut-c4bd0ad4104123046c7637b75b0a5fd64941a296.tar.gz DropOut-c4bd0ad4104123046c7637b75b0a5fd64941a296.zip | |
feat: update Microsoft account client ID and enhance login UX with clipboard and auto-open functionality
Diffstat (limited to 'src-tauri/src/core')
| -rw-r--r-- | src-tauri/src/core/auth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/core/auth.rs b/src-tauri/src/core/auth.rs index 255a7db..ede8f5a 100644 --- a/src-tauri/src/core/auth.rs +++ b/src-tauri/src/core/auth.rs @@ -82,7 +82,7 @@ pub fn generate_offline_uuid(username: &str) -> String { // --- Microsoft Auth Logic --- // Constants -const CLIENT_ID: &str = "499546d9-bbfe-4b9b-a086-eb3d75afb78f"; +const CLIENT_ID: &str = "fe165602-5410-4441-92f7-326e10a7cb82"; const SCOPE: &str = "XboxLive.Signin offline_access openid profile email"; #[derive(Debug, Serialize, Deserialize)] |