diff --git a/libs/web/auth/data-access/src/lib/models/spotify-authorize.ts b/libs/web/auth/data-access/src/lib/models/spotify-authorize.ts index 23c85a13..0162676a 100644 --- a/libs/web/auth/data-access/src/lib/models/spotify-authorize.ts +++ b/libs/web/auth/data-access/src/lib/models/spotify-authorize.ts @@ -29,7 +29,7 @@ export class SpotifyAuthorize { const params = new URLSearchParams({ client_id: this.CLIENT_ID, redirect_uri: `${window.location.origin}/`, - scope: encodeURIComponent(this.SCOPES.join(' ')), + scope: this.SCOPES.join(' '), response_type: 'token' }); return `${this.SPOTIFY_AUTHORIZE_URL}?${params.toString()}`;