You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This doesn't work for me either. I have vanilla JSON, downloaded from GCP, and configured the path with GOOGLE_APPLICATION_CREDENTIALS_JSON env. This error hit me in the face...
Ehm, I am ashamed but my problem was that I used GOOGLE_APPLICATION_CREDENTIALS_JSON and put there path to the JSON file. Using GOOGLE_APPLICATION_CREDENTIALS works just fine.
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)
}
}
The text was updated successfully, but these errors were encountered: