2017 © Pedro PelĂĄez
 

library grooveshark-php-api

PHP implementation of Grooveshark's Web API.

image

clemfromspace/grooveshark-php-api

PHP implementation of Grooveshark's Web API.

  • Monday, February 16, 2015
  • by clemfromspace
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Grooveshark Web Api PHP

This is a PHP implementation of the Grooveshark Web API., (*1)

Requirements

PHP 5.3 or greater., (*2)

Installation

Using composer:, (*3)

"require": {
    "clemfromspace/grooveshark-php-api": "dev-master"
}

Examples

First, request a session ID using your application credentials., (*4)

$session = new GroovesharkAPI\Session('YOUR APPLICATION KEY', 'YOUR APPLICATION SECRET');
$session->startSession();

$api = new GroovesharkAPI\GroovesharkAPI($session);

Using this session object, initialize the client :, (*5)

$api = new GroovesharkAPI\GroovesharkAPI($session);

You can now send requests to Grooveshark's API :, (*6)

$response = $api->getSongSearchResults('Beat it');

Grooveshark Api documentation, (*7)

The Versions

16/02 2015

dev-master

9999999-dev https://github.com/clemfromspace/grooveshark-php-api

PHP implementation of Grooveshark's Web API.

  Sources   Download

MIT

The Requires

  • php >=5.3.3

 

by Clément Denoix

grooveshark