Skip to content

Commit bc59ea6

Browse files
authored
docs: fix README link to javadoc (#322)
1 parent f3fdee1 commit bc59ea6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# Google Auth Library
22

3-
43
Open source authentication client library for Java.
54

65
[![unstable](http://badges.github.io/stability-badges/dist/unstable.svg)](http://github.com/badges/stability-badges)
76
[![codecov](https://codecov.io/gh/googleapis/google-auth-library-java/branch/master/graph/badge.svg)](https://codecov.io/gh/googleapis/google-auth-library-java)
87
[![Maven](https://img.shields.io/maven-central/v/com.google.auth/google-auth-library-credentials.svg)](https://img.shields.io/maven-central/v/com.google.auth/google-auth-library-credentials.svg)
98

10-
- [API Documentation](https://google.github.io/google-auth-library-java/releases/latest/apidocs)
9+
- [API Documentation](https://googleapis.dev/java/google-auth-library/latest)
1110

1211
This project consists of 3 artifacts:
1312

@@ -146,7 +145,7 @@ AccessToken token = credentials.refreshAccessToken();
146145
### ImpersonatedCredentials
147146

148147
Allows a credentials issued to a user or service account to
149-
impersonate another. The source project using ImpersonaedCredentials must enable the
148+
impersonate another. The source project using ImpersonatedCredentials must enable the
150149
"IAMCredentials" API. Also, the target service account must grant the orginating principal
151150
the "Service Account Token Creator" IAM role.
152151

@@ -170,7 +169,10 @@ for (Bucket b : storage_service.list().iterateAll())
170169

171170
## Using Credentials with `google-http-client`
172171

173-
Credentials provided by `google-auth-library` can be used with Google's [HTTP-based clients][apiary-clients]. We provide a [`HttpCredentialsAdapter`][http-credentials-adapter] which can be used as an [`HttpRequestInitializer`][http-request-initializer].
172+
Credentials provided by `google-auth-library` can be used with Google's
173+
[HTTP-based clients][apiary-clients]. We provide a
174+
[`HttpCredentialsAdapter`][http-credentials-adapter] which can be used as an
175+
[`HttpRequestInitializer`][http-request-initializer].
174176

175177
```java
176178
import com.google.api.client.http.HttpRequestInitializer;

0 commit comments

Comments
 (0)