google-auth-library-java icon indicating copy to clipboard operation
google-auth-library-java copied to clipboard

Open source Auth client library for Java

Results 84 google-auth-library-java issues
Sort by recently updated
recently updated
newest added

I'm trying to get data from the `id_token` which is returned when exchanging an authorization code with the token endpoint. I have everything I need to make the request to...

type: feature request

FileInputStream fileInputStream = new FileInputStream(credPath); ServiceAccountCredentials sourceCredentials = ServiceAccountCredentials .fromStream( new FileInputStream(credPath)); credPath must json , but i have p12

type: feature request
priority: p3

…entials This enables the storage of service account credentials in external key storage such as remote KeyVaults or HSMs. Fixes #410

priority: p2
semver: minor
cla: yes

Is it possible to make ServiceAccountCredentials.fromJson() a public method so that it is accessible outside the package? At the moment, I am using ServiceAccountCredentials.fromPkcs8(). However, using ServiceAccountCredentials.fromJson() might simplify some...

type: feature request

I've noticed the webpage of this repository doesn't explain how to leave the previous one : https://googleapis.dev/java/google-api-client/latest/com/google/api/client/googleapis/auth/oauth2/GoogleCredential.html **Is your feature request related to a problem? Please describe.** Yes, I can't...

type: feature request

Unless we really think getDefaultServiceAccount can't fail here, we should not convert the IOException to a RuntimeException. ``` @Override public String getAccount() { if (serviceAccountEmail == null) { try {...

priority: p2
type: feature request
semver: major

Hi team, Can we support read CREDENTIAL_ENV_VAR from VM options? #### Code snippet ```java String credentialsPath = this.getProperty(CREDENTIAL_ENV_VAR, this.getEnv(CREDENTIAL_ENV_VAR)); ```

type: feature request

Thanks for stopping by to let us know something could be better! Please include as much information as possible: #### Environment details - OS: Android 10.0 - Java version N/A...

type: question
android

Currently `JwtClaims` only support String objects when passing a map of additional claims. This limitation prevent applications that need more sophisticated JWT payloads to use the library. According to the...

type: feature request

The current API for ServiceAccountCredentials does not support explicitly setting a Provider. (This is true for all Credentials implementing ServiceAccountSigner, but changing it consistently for all these should also incorporate...

type: feature request