Spotify4Unity icon indicating copy to clipboard operation
Spotify4Unity copied to clipboard

APIScopes in PKCE config don't seem to save

Open wybo opened this issue 9 months ago • 0 comments

When setting the API Scopes to anything less than everything, the changes aren't saved.

Am using a work-around by setting them manually in the Awake() of my SpotifyListener.

void Awake() { GameObject.Find("Spotify").GetComponent<PKCE_AuthConfig>().APIScopes = new List() {"user-read-playback-state"}; base.Awake(); }

But this is obviously just a workaround.

wybo avatar May 22 '24 13:05 wybo