1. Go to this page and download the library: Download ssovit/tiktok-private-api 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/ */
ssovit / tiktok-private-api example snippets
$api=new \Sovit\TikTokPrivate\Api(array(/* config array*/));
$trendingFeed=$api->getForYou($maxCursor=0);
$userData=$api->getUser("USERNAME");
$userFeed=$api->getUserFeed("USER_ID",$maxCursor=0);
$challenge=$api->getChallenge("CHALLENGE_ID");
$challengeFeed=$api->getChallengeFeed("CHALLENGE_ID",$maxCursor=0);
$musc=$api->getMusic("6798898508385585925");
$musicFeed=$api->getMusicFeed("6798898508385585925",$maxCursor=0);
$videoData=$api->getVideoByID("6829540826570296577");
$videoData=$api->getVideoByUrl("https://www.tiktok.com/@zachking/video/6829303572832750853");
// More to come
$api=new \Sovit\TikTokPrivate\Api(array(
"proxy" => '', // proxy in url format like http://username:password@host:port
"cache_timeout" => 3600 // 1 hours cache timeout
"transform_result" => true, // false if you want to get json without transforming it to more readable JSON structure
"api_key" => "API_KEY" // see below on how to get API key
), $cache_engine=false);
// Example using WordPress transient as cache engine
Class MyCacheEngine{
function get($cache_key){
return get_transient($cache_key);
}
function set($cache_key,$data,$timeout=3600){
return set_transient($cache_key,$data,$timeout);
}
}