snoozer: try another auth method
This commit is contained in:
@@ -49,11 +49,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||||||
|
|
||||||
let auth_store = InMemoryAuthenticationStore::new(Some(credentials.clone()));
|
let auth_store = InMemoryAuthenticationStore::new(Some(credentials.clone()));
|
||||||
let mut client = HTTPAPIClient::new(server_url, auth_store);
|
let mut client = HTTPAPIClient::new(server_url, auth_store);
|
||||||
|
|
||||||
// Authenticate first (and set token manually in case the client doesn't)
|
// Kick auth... this is bad. Update monitor should do this.
|
||||||
let token = client.authenticate(credentials).await?;
|
_ = client.get_conversations().await?;
|
||||||
client.auth_store.set_token(token.to_string()).await;
|
|
||||||
println!("Authenticated successfully: {:?}", token);
|
|
||||||
|
|
||||||
// Open event socket
|
// Open event socket
|
||||||
let event_socket = client.open_event_socket(None).await?;
|
let event_socket = client.open_event_socket(None).await?;
|
||||||
|
|||||||
Reference in New Issue
Block a user