Download the PHP package gerenuk/spotify-for-laravel without Composer
On this page you can find all versions of the php package gerenuk/spotify-for-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gerenuk/spotify-for-laravel
More information about gerenuk/spotify-for-laravel
Files in gerenuk/spotify-for-laravel
Package spotify-for-laravel
Short Description A Laravel wrapper for the Spotify Web API.
License MIT
Homepage https://github.com/gerenuk-ltd/spotify-for-laravel
Informations about the package spotify-for-laravel

Spotify for Laravel
Spotify for Laravel is an easy-to-use Spotify Web API wrapper for Laravel, providing methods for each endpoint and a fluent interface for optional parameters. It is based on aerni/laravel-spotify adding support for the 'Authorization Code Flow'.
[!NOTE] This package is still under development and may not support all endpoints.
Table of Contents
- Introduction
- Version Compatability
- Installation
- Usage
- Optional Parameters
- Spotify API Reference
- Albums
- Artists
- Audiobooks
- Categories
- Chapters
- Episodes
- Markets
- Player
- Playlists
- Search
- Shows
- Tracks
- Users
- Testing
- Changelog
- Contributing
- Security Vulnerabilities
- Credits
- License
Version Compatability
Plugin | PHP |
---|---|
1.x | 8.x |
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file:
Set the Client ID
and Client Secret
of your Spotify App in your .env
file.
[!NOTE] You will need to set the 'scope' and 'redirect_uri' if using endpoints that access user data.
Usage
Before using the methods in this package you will need to generate an access_token
.
Once the access_token
has expired you will need to generate a new one, this can be done by:
Below is a simple example of searching for tracks with the name Closed on Sunday
:
Important: The get()
method acts as the final method of the fluent interface. Make sure to always call it last in the method chain to execute a request to the Spotify Web API.
Optional Parameters
You may pass optional parameters to your requests using the fluent interface provided by this package. A common use case is to set a limit
and offset
to your request.
Parameter Methods API Reference
Consult the Spotify Web API Reference Documentation to check which parameters are available to what endpoint.
Resetting Defaults
You may want to reset the default setting of country
, locale
or market
for a given request. You may do so by calling the corresponding parameter method with an empty argument.
Response Key
Some API responses are wrapped in a top level object like artists
or tracks
. If you want to directly access the content of a given top level object, you may do so by passing its key as a string to the get()
method.
Spotify API Reference
Note: Any parameter that accepts multiple values can either receive a string with comma-separated values or an array of values.
Albums
Artists
Audiobooks
Categories
Chapters
Episodes
Markets
Player
Playlists
Search
Shows
Tracks
Users
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Modified version of laravel-spotify from aerni
- Kieran Proctor
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of spotify-for-laravel with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0||^12.0