Skip to content

Commit b85a52f

Browse files
committed
fix docs links
Signed-off-by: Adam Ratzman <[email protected]>
1 parent bc7f9ea commit b85a52f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kotlin Spotify Web API
22
[![JCenter](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.adamratzman/spotify-api-kotlin)
33
[![Build Status](http://144.217.240.243:8111/app/rest/builds/aggregated/strob:(buildType:(project:(id:SpotifyWebApiKotlin)))/statusIcon.svg)](http://144.217.240.243:8111/project.html?projectId=SpotifyWebApiKotlin)
4-
[![](https://img.shields.io/badge/Documentation-latest-orange.svg)](https://adamint.github.io/spotify-web-api-kotlin/docs/spotify-web-api-kotlin/)
4+
[![](https://img.shields.io/badge/Documentation-latest-orange.svg)](https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/)
55
![](https://img.shields.io/badge/License-MIT-blue.svg)
66

77
This is the [Kotlin](https://kotlinlang.org/) implementation of the [Spotify Web API](https://developer.spotify.com/web-api/)
@@ -71,7 +71,7 @@ packagingOptions {
7171
```
7272

7373
## Documentation
74-
The `spotify-web-api-kotlin` JavaDocs are hosted at https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/
74+
The `spotify-web-api-kotlin` JavaDocs are hosted at https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/
7575

7676
## Have a question?
7777
If you have a question, you can:
@@ -99,7 +99,7 @@ By default, the SpotifyApi `Token` automatically regenerates when needed.
9999
This can be changed by overriding the `automaticRefresh` builder setting.
100100

101101
There are four exposed builders, depending on the level of control you need over api creation.
102-
Please see the [spotifyAppApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/com.adamratzman.spotify/spotify-app-api.html) for a full list of available builders.
102+
Please see the [spotifyAppApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-app-api.html) for a full list of available builders.
103103

104104
You will need:
105105
- Spotify application client id
@@ -167,7 +167,7 @@ This library contains helpful methods that can be used to simplify the PKCE auth
167167
This includes `getSpotifyPkceCodeChallenge` (not available in the Kotlin/JS target), which SHA256 hashes and base64url encodes the code
168168
challenge, and `getPkceAuthorizationUrl`, which allows you to generate an easy authorization url for PKCE flow.
169169

170-
Please see the [spotifyClientPkceApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-pkce-api.html) for a full list of available builders.
170+
Please see the [spotifyClientPkceApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-pkce-api.html) for a full list of available builders.
171171

172172
**Takeaway**: Use PKCE authorization flow in applications where you cannot secure the client secret.
173173

@@ -226,7 +226,7 @@ There are also several optional parameters, allowing you to set whether the auth
226226
for implicit grant flow, the state, and whether a re-authorization dialog should be shown to users.
227227

228228
There are several exposed builders, depending on the level of control you need over api creation.
229-
Please see the [spotifyClientApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-api.html) for a full list of available builders.
229+
Please see the [spotifyClientApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-client-api.html) for a full list of available builders.
230230

231231
##### Example: You've redirected the user back to your web server and have an authorization code (code).
232232
In this example, automatic token refresh is turned on by default.
@@ -277,7 +277,7 @@ Some highlights about the flow are:
277277
- It is client-side
278278
- It does not require a client secret
279279

280-
Please see the [spotifyImplicitGrantApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/com.adamratzman.spotify/spotify-implicit-grant-api.html) for a full list of available builders.
280+
Please see the [spotifyImplicitGrantApi builder docs](https://adamint.github.io/spotify-web-api-kotlin/spotify-web-api-kotlin/com.adamratzman.spotify/spotify-implicit-grant-api.html) for a full list of available builders.
281281

282282
The Kotlin/JS target contains the `parseSpotifyCallbackHashToToken` method, which will parse the hash
283283
for the current url into a Token object, with which you can then instantiate the api.

0 commit comments

Comments
 (0)