PHP code example of yunzhiyike / suno-ai-sdk
1. Go to this page and download the library: Download yunzhiyike/suno-ai-sdk library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yunzhiyike / suno-ai-sdk example snippets
declare(strict_types=1);
/**
* This file is part of Yunzhiyike
*/
namespace Yunzhiyike\Test;
use PHPUnit\Framework\TestCase;
use Yunzhiyike\SunoAiSdk\SunoAi;
/**
* @internal
* @coversNothing
*/
class SunoAiTest extends TestCase
{
public function test()
{
$cookie = 'your suno-ai cookie';
$timeOut = 60;
$sunoApi = new SunoAi($cookie, $timeOut);
$info = $sunoApi->refreshSession();
$userInfo = $sunoApi->getUserInfoByEmail($info->getEmail());
$page = 1;
$res = $sunoApi->getWorkList($userInfo->getUserId(), $page);
foreach ($res as $r) {
var_dump($r);
}
var_dump($sunoApi->getAvailableTimes($userInfo->getUserId()));
var_dump($sunoApi->generateMusic($userInfo->getUserId(), 'music title', 'music text', 'music tags', true));
}
}