quiec/php-tidal
Composer 安装命令:
composer require quiec/php-tidal
包简介
Unofficial PHP API for TIDAL music streaming service
README 文档
README
Unofficial PHP API for TIDAL music streaming service.
Installation
Install from Composer using composer:
$ composer require quiec/php-tidal dev-master
Also you can install without composer (for shared hosts). Click here for download zip.
Example usage
<?php require_once "vendor/autoload.php"; use Tidal\TidalAPI; $tidal = new TidalAPI(); $tidal->logIn("user", "pass"); $ara = $tidal->search("istanbul"); foreach ($ara as $sonuc) { echo $sonuc["artist"]["name"] . " - " . $sonuc["title"] . "\n"; }
Documentation
I will add.
统计信息
- 总下载量: 55
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-07