Exemple #1
0
        public async Task Authenticate()
        {
            ConnectionParams connectionParams = new ConnectionParams.Builder((await _config).SpotifyClientId)
                                                .SetRedirectUri("https://partyplaylists.azurewebsites.net/Room/SpotifyAuthorized/")
                                                .ShowAuthView(true)
                                                .Build();

            var androidContext = Application.Context;

            SpotifyAppRemote.Connect(androidContext, connectionParams, _connector);
        }
 public void OnConnected(SpotifyAppRemote p0)
 {
     SpotifyApp = p0;
 }
 public void Disconnect(SpotifyAppRemote p0)
 {
     throw new NotImplementedException();
 }
 public MyEventArgs(SpotifyAppRemote appRemote)
 {
     AppRemote = appRemote;
 }