TikTok Video Downloader Without Watermark & Music Extractor

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

It is one of the best TikTok Downloaders available online to download TikTok videos without watermark. You are not required to install any software on your computer or mobile phone, all that you need is a TikTok video link, and all the processing is done on our side so you can be one click away from downloading videos to your devices. Why choose our script? Well, we’ll not brag about this but it is one of the top-quality script available in the market and provide more functions than it’s...

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();
    }
 
Top