Skip to content

Commit cec26e1

Browse files
committed
Update inline Spotify doc links
1 parent 7035e00 commit cec26e1

File tree

5 files changed

+174
-174
lines changed

5 files changed

+174
-174
lines changed

docs/examples/fetching-artist-information.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ $recommendations = $api->getRecommendations([
6767
print_r($recommendations);
6868
```
6969

70-
It's also possible to fetch recommendations based on genres and tracks, see the [Spotify docs](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-recommendations) for more info.
70+
It's also possible to fetch recommendations based on genres and tracks, see the [Spotify docs](https://developer.spotify.com/documentation/web-api/reference/get-recommendations) for more info.
7171

7272
Please see the [method reference](/docs/method-reference/SpotifyWebAPI.md) for more available options for each method.

docs/examples/fetching-track-information.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ $recommendations = $api->getRecommendations([
6464
print_r($recommendations);
6565
```
6666

67-
It's also possible to fetch recommendations based on genres and artists, see the [Spotify docs](https://developer.spotify.com/documentation/web-api/reference/#/operations/get-recommendations) for more info.
67+
It's also possible to fetch recommendations based on genres and artists, see the [Spotify docs](https://developer.spotify.com/documentation/web-api/reference/get-recommendations) for more info.
6868

6969
Please see the [method reference](/docs/method-reference/SpotifyWebAPI.md) for more available options for each method.

docs/examples/searching-the-spotify-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Searching the Spotify Catalog
22

33
The whole Spotify catalog, including playlists, can be searched in various ways. Since the Spotify search contains so many features, this page just includes a basic example and one should refer to the
4-
[Spotify documentation](https://developer.spotify.com/documentation/web-api/reference/#/operations/search) and [method reference](/docs/method-reference/SpotifyWebAPI.md) for more information.
4+
[Spotify documentation](https://developer.spotify.com/documentation/web-api/reference/search) and [method reference](/docs/method-reference/SpotifyWebAPI.md) for more information.
55

66
```php
77
$results = $api->search('blur', 'artist');

0 commit comments

Comments
 (0)