yoshidan / google-cloud-rust

Google Cloud Client Libraries for Rust.
MIT License
216 stars 81 forks source link

json error: expected value at line 1 column 1 #230

Open ag039st opened 4 months ago

ag039st commented 4 months ago

MAC os m3 ,

I used auth application-default login, and Im using the same json ,

but this is failling with json error: expected value at line 1 column 1 no clear of which expected value failed

let config = ClientConfig::default().with_auth().await; match config { Ok(con) => { let client = Client::new(con); info!("successfully connected ") } Err(error) => { error!("something failed {}",error) } }