定制 pouler/apple-music-api 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

pouler/apple-music-api

最新稳定版本:v0.9

Composer 安装命令:

composer require pouler/apple-music-api

包简介

PHP Wrapper for the Apple Music API

README 文档

README

Latest Stable Version Latest Unstable Version

Apple Music API PHP

This is a PHP wrapper for the Apple Music API.

Requirements

  • PHP 8.3 or later.
  • Symfony HTTP Client

Installation

Install it using Composer:

composer require pouler/apple-music-api

Usage

Before using the Apple Music API, you need to sign up for the Apple Developer Program. Read more about this here.

<?php

require 'vendor/autoload.php';

$tokenGenerator = new PouleR\AppleMusicAPI\AppleMusicAPITokenGenerator();
$jwtToken = $tokenGenerator->generateDeveloperToken(
    'team.id',
    'key.id',
    '/path/to/authkey.p8'
);

$curl = new \Symfony\Component\HttpClient\CurlHttpClient();
$client = new PouleR\AppleMusicAPI\APIClient($curl);
$client->setDeveloperToken($jwtToken);

$api = new PouleR\AppleMusicAPI\AppleMusicAPI($client);

$result = $api->getCatalogPlaylist('nl', 'pl.a56541661a7a4cca95ddeca24e5e5316');

print_r($result);

统计信息

  • 总下载量: 97.57k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 42
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 42
  • Watchers: 4
  • Forks: 13
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-10-01