Advertisement
Bagosep

Index Track

Jun 2nd, 2021
800
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. require '../vendor/autoload.php';
  2. use GuzzleHttp\Client;
  3.  
  4. $token = $_SESSION['token'];
  5.  
  6. $client = new Client([
  7.     'base_uri' => 'https://api.deezer.com',
  8. ]);
  9.  
  10. $response = $client->request('GET', 'playlist/'.$_GET['id'].'/tracks');
  11. $track = json_decode($response->getBody());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement