mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
examples/playlist_tracks: Use normal URI parser
This commit is contained in:
parent
a605444d18
commit
5e8e2ba8c5
1 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,5 @@
|
|||
use std::env;
|
||||
use std::process;
|
||||
|
||||
use librespot::core::authentication::Credentials;
|
||||
use librespot::core::config::SessionConfig;
|
||||
|
@ -18,11 +19,13 @@ async fn main() {
|
|||
}
|
||||
let credentials = Credentials::with_password(&args[1], &args[2]);
|
||||
|
||||
let uri_split = args[3].split(':');
|
||||
let uri_parts: Vec<&str> = uri_split.collect();
|
||||
println!("{}, {}, {}", uri_parts[0], uri_parts[1], uri_parts[2]);
|
||||
|
||||
let plist_uri = SpotifyId::from_base62(uri_parts[2]).unwrap();
|
||||
let plist_uri = SpotifyId::from_uri(&args[3]).unwrap_or_else(|_| {
|
||||
eprintln!(
|
||||
"PLAYLIST should be a playlist URI such as: \
|
||||
\"spotify:playlist:37i9dQZF1DXec50AjHrNTq\""
|
||||
);
|
||||
process::exit(1);
|
||||
});
|
||||
|
||||
let session = Session::connect(session_config, credentials, None)
|
||||
.await
|
||||
|
|
Loading…
Reference in a new issue