TikTok Video Downloader Without Watermark & Music Extractor

TikTok Video Downloader Without Watermark & Music Extractor 3.0.7 Not Nulled

没有下载权限
  • 主题发起人 主题发起人 tomek
  • 起始日期 起始日期
Lv.2
Iron Member
已加入
2021/12/23
消息
10
回应得分
5
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...
 
hello please update Version 2.5.3– 11 March, 2022 thank you so much.
 
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();
    }
 
顶部