1. Go to this page and download the library: Download liballab/tiktok-php 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/ */
liballab / tiktok-php example snippets
composer
use TikTok\Scraper;
// Instantiate TikTok Scraper library
$scraper = new Scraper([
// Sign method
'signMethod' => 'datafetch'
'datafetchApiKey' => ''
'userAgent' => '',
'proxy' => [
'protocol' => 'http',
'address' => '127.0.0.1:8080',
'auth' => 'username:password'
],
'timeout' => 20,
// Since v1.8.0 (Must set cookie file)
'cookieFile' => __DIR__ . '/cookies.json'
// If not using cookies:
'disableCookies' => true
]);