summaryrefslogtreecommitdiff
path: root/examples/access_token
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-09-06 21:40:01 +0200
committerHampusM <hampus@hampusmat.com>2022-09-06 21:40:01 +0200
commitb44463d533ba9b789e3423d670e2ddcc32c1112c (patch)
tree68f377f86ffbc99efcd88bc4fa1549784af6cf5d /examples/access_token
parentd7929e7e9fee879a28871c2195620869db291441 (diff)
feat: add getting user & playlists
Diffstat (limited to 'examples/access_token')
-rw-r--r--examples/access_token/main.rs52
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/access_token/main.rs b/examples/access_token/main.rs
deleted file mode 100644
index d9b4d79..0000000
--- a/examples/access_token/main.rs
+++ /dev/null
@@ -1,52 +0,0 @@
-use std::error::Error;
-
-use anyhow::Context;
-use config::Config;
-use deez::auth::{request_access_token, AuthPromptHandler};
-use serde::Deserialize;
-
-#[derive(Deserialize)]
-struct Settings
-{
- app_id: u32,
- secret_key: String,
- address: String,
- port: u16,
- uri_scheme: String,
-}
-
-#[tokio::main]
-async fn main() -> Result<(), Box<dyn Error + Send + Sync>>
-{
- let settings = Config::builder()
- .add_source(config::File::with_name("examples/access_token/Settings"))
- .build()
- .with_context(|| "Failed to read settings")?
- .try_deserialize::<Settings>()
- .with_context(|| "Invalid settings")?;
-
- let auth_code_prompt_info = AuthPromptHandler::run(
- settings.app_id,
- settings.address,
- settings.port,
- settings.uri_scheme,
- )
- .await?;
-
- println!("{}", auth_code_prompt_info.auth_prompt_url);
-
- let auth_code = auth_code_prompt_info.handler.await??;
-
- println!("Retrieved authentication code '{}'", auth_code);
-
- let access_token =
- request_access_token(settings.app_id, settings.secret_key, auth_code).await?;
-
- println!(
- "Retrieved access token '{}' which expires in {} seconds",
- access_token.access_token,
- access_token.expires.as_secs()
- );
-
- Ok(())
-}