1. Go to this page and download the library: Download gerenuk/spotify-for-laravel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gerenuk / spotify-for-laravel example snippets
return [
/*
|--------------------------------------------------------------------------
| API Base URL
|--------------------------------------------------------------------------
|
| Here you may define the base URL of the Spotify API.
|
*/
'api_url' => 'https://api.spotify.com/v1',
/*
|--------------------------------------------------------------------------
| Authentication
|--------------------------------------------------------------------------
|
| Here you may define the I requests.
|
*/
'default_config' => [
'country' => null,
'locale' => null,
'market' => null,
],
];
using Gerenuk\SpotifyForLaravel\Facades\SpotifyAuth;
// Using the 'Authorization Code Flow'.
SpotifyAuth::authorize();
SpotifyAuth::generateAccessToken('code'); // redirect_uri?code=
// Using the 'Credentials Flow'.
SpotifyAuth::generateCredentialsToken();
using Gerenuk\SpotifyForLaravel\Facades\SpotifyAuth;
// Using the 'Authorization Code Flow'.
SpotifyAuth::refreshAccessToken();
// Using the 'Credentials Flow'.
SpotifyAuth::generateCredentialsToken();
use Gerenuk\SpotifyForLaravel\Facades\Spotify;
Spotify::searchTracks('Closed on Sunday')->get();
Spotify::searchTracks('Closed on Sunday')->limit(50)->offset(50)->get();
// Limit the response to a particular geographical market.
Spotify::artistAlbums('artist_id')->country('US')->get();
// Filter the query using the provided string.
Spotify::playlist('playlist_id')->fields('description, uri')->get();
// Include any relevant content that is hosted externally.
Spotify::searchTracks('query')->ks('query')->offset(10)->get();
// Limit the response to a particular geographical market.
Spotify::searchAlbums('query')->market('US')->get();
// Limit the response to a particular language.
Spotify::category('category_id')->locale('en_US')->get();
// This will reset the default market to nothing.
Spotify::searchTracks('query')->market()->get();
// This will return the content of the tracks object.
Spotify::searchTracks('query')->get('tracks');
// Pass a string with comma-separated values
Spotify::albums('album_id, album_id_2, album_id_3')->get();
// Or pass an array of values
Spotify::albums(['album_id', 'album_id_2', 'album_id_3'])->get();
// Get an album by ID.
Spotify::album('album_id')->get();
// Get several albums by IDs. Provide a string or array of IDs.
Spotify::albums('album_id, album_id_2, album_id_3')->get();
// Get the tracks of an album by ID.
Spotify::albumTracks('album_id')->get();
// Get the currently authenticated users saved albums.
Spotify::usersSavedAlbums()->get();
// Get new album releases shown in the Spotify browse tab.
Spotify::newReleases()->get();
// Get an artist by ID.
Spotify::artist('artist_id')->get();
// Get several artists by IDs. Provide a string or array of IDs.
Spotify::artists('artist_id, artist_id_2, artist_id_3')->get();
// Get albums of an artist by ID.
Spotify::artistAlbums('artist_id')->get();
// Get the artist's top tracks by ID.
Spotify::artistTopTracks('artist_id')->get();
// Get an audiobook by ID.
Spotify::audiobook('audiobook_id')->get();
// Get several audiobooks by IDs. Provide a string or array of IDs.
Spotify::audiobooks('audiobook_id, audiobook_id_2, audiobook_id_3')->get();
// Get chapters of an audiobook by ID.
Spotify::audiobookChapters('audiobook_id')->get();
// Get the currently authenticated users saved audiobooks.
Spotify::usersSavedAudiobooks()->get();
// Get a category by ID.
Spotify::category('category_id')->get();
// Get a list of categories.
Spotify::categories()->get();
// Get a chapter by ID.
Spotify::chapter('chapter_id')->get();
// Get several chapters by IDs. Provide a string or array of IDs.
Spotify::chapters('chapter_id, chapter_id_2, chapter_id_3')->get();
// Get an episode by ID.
Spotify::episode('episode_id')->get();
// Get several episodes by IDs. Provide a string or array of IDs.
Spotify::episodes('episode_id, episode_id_2, episode_id_3')->get();
// Get the currently authenticated users saved episodes.
Spotify::usersSavedEpisodes()->get();
// Get available markets.
Spotify::markets()->get();
// Get the currently authenticated users playback state.
Spotify::playbackState()->get();
// Get the currently authenticated users available devices.
Spotify::availableDevices()->get();
// Get the currently authenticated users currently playing track.
Spotify::currentlyPlayingTrack()->get();
// Get the currently authenticated users recently played tracks.
Spotify::recentlyPlayedTracks()->get();
// Get the currently authenticated users track queue.
Spotify::currentUsersQueue()->get();
// Get a playlist by ID.
Spotify::playlist('playlist_id')->get();
// Get a playlist's tracks by ID.
Spotify::playlistTracks('playlist_id')->get();
// Get the currently authenticated users playlists.
Spotify::currentUsersPlaylists()->get();
// Get a users playlists by user ID.
Spotify::usersPlaylists('user_id')->get();
// Get a playlist's cover image by ID.
Spotify::playlistCoverImage('playlist_id')->get();
// Search items by query. Provide a string or array to the first parameter.
Spotify::searchItems('album, artist, playlist, track, show, episode, audiobook', 'query')->get();
// Search albums by query.
Spotify::searchAlbums('query')->get();
// Search artists by query.
Spotify::searchArtists('query')->get();
// Search playlists by query.
Spotify::searchPlaylists('query')->get();
// Search tracks by query.
Spotify::searchTracks('query')->get();
// Search shows by query.
Spotify::searchShows('query')->get();
// Search episodes by query.
Spotify::searchEpisodes('query')->get();
// Search audiobooks by query.
Spotify::searchAudiobooks('query')->get();
// Get a show by ID.
Spotify::show('show_id')->get();
// Get several shows by IDs. Provide a string or array of IDs.
Spotify::shows('show_id, show_id_2, show_id_3')->get();
// Get the episodes of a show by ID.
Spotify::showEpisodes('show_id')->get();
// Get the currently authenticated users saved shows.
Spotify::currentUsersSavedShows()->get();
// Get a track by ID.
Spotify::track('track_id')->get();
// Get several tracks by IDs. Provide a string or array of IDs.
Spotify::tracks('track_id, track_id_2, track_id_3')->get();
// Get the currently authenticated users saved tracks.
Spotify::currentUsersSavedTracks()->get();
// Get the currently authenticated users profile.
Spotify::currentUsersProfile()->get();
// Get the currently authenticated users top items.
Spotify::currentUsersTopItems('item_type')->get();
// Get a user's profile
Spotify::user('user_id')->get();
// Get the currently authenticated users followed artists.
Spotify::followedArtists()->get();