yii2-soundcloud Soundcloud.com API extension for yii2

Soundcloud.com API Extension for Yii 2

This extension provides a Soundcloud API solution for Yii 2.

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
        //...
        'soundcloud' => [
            'class' => 'Njasm\Soundcloud\yii2\Soundcloud',
            'clientId' => 'YOUR_SOUNDCLOUD_CLIENT_ID',
            'clientSecret' => 'YOUR_SOUNDCLOUD_CLIENT_SECRET',
            'callbackUrl' => 'YOUR_URL_CALLBACK'
        ],
    ],
];

You can then access Soundcloud component as follows:

echo Yii::$app->soundcloud->getAuthUrl();

For further instructions refer to the related Soundcloud Library Documentation here.

Installation

The preferred way to install this extension is through Composer

Either run

php composer.phar require --prefer-dist njasm/yii2-soundcloud "dev-master"

or add

[javascript]
"njasm/yii2-soundcloud": "dev-master"

to the "require" section of your composer.json.

0 0
2 followers
18 downloads
Yii Version: 2.0
License: MIT
Category: Web Service
Developed by: njasm
Created on: Jan 29, 2015
Last updated: 9 years ago

Related Extensions