TikTok Video Downloader Without Watermark & Music Extractor 3.0.7 Not Nulled

No permission to download
tomek
Lv.2
Iron Member
Joined
Dec 23, 2021
Messages
10
Reaction score
4
Credits
$3
tomek submitted a new resource:

TikTok Video Downloader Without Watermark & Music Extractor - TikTok Downloader Without Watermark & Music Extractor


Read more about this resource...
 
app\Service\TikTok\TikTok.php
can't nulled
code:

PHP:
protected static function useRemoteAPI(string $url, string $id): array
    {
        $response = Http::timeout(30)
            ->baseUrl(config("services.codespikex.api"))
            ->withUserAgent(request()->userAgent())
            ->acceptJson()
            ->withoutVerifying()
            ->get('/api/v2/tiktok/get-video', [
                'url' => $url,
                'id' => $id,
                'ip' => request()->ip(),
                'license' => config('app.license_key'),
                'domain' => config('app.url'),
            ]);
        if ($response->failed()) {
            throw new TikTokAPIException(
                $response->json('message', "Failed to connect to TikTok API."),
                $response->json('code', 500),
                $response->status()
            );
        }
        return $response->json();
    }