TikTok Login Kit implementation in PHP based on the official documentation.
This is an unofficial SDK for the official Login Kit APIs.
The library has been updated to include video/image publish via Direct Post
Current features include:
Install via Composer
composer require gimucco/tiktok-loginkit
You need to have your app set up and approved in the TikTok Developer Portal.
If you're upgrading to the v2 TikTok API version, make sure you've added your Redirect URLs and selected the proper scopes.
If you're planning to publish videos/photos via Direct Post, you need to undergo an audit. More info here
Until you're approved:
// Initialize the class.
// $client_id and $client_secret are provided by TikTok.
// $redirect_uri must be approved in the TikTok developer portal.
$_TK = new TikTokLoginKitConnector($client_id, $client_secret, $redirect_uri);
if (TikTokLoginKitConnector::receivingResponse()) {
try {
$token = $_TK->verifyCode($_GET[TikTokLoginKitConnector::CODE_PARAM]);
// Your logic to store the access token
$user = $_TK->getUser();
// Your logic to manage the User info
$videos = $_TK->getUserVideoPages();
// Your logic to manage the Video info
} catch (Exception $e) {
echo "Error: ".$e->getMessage();
echo '
Retry';
}
} else {
echo 'Log in with TikTok';
}
If you prefer to use a .ini file to pass the api credentials, you can use the TikTokLoginKitConnector::fromIni
method.
The .ini file should have this simple structure
client_id = [your client id]
client_secret = [your client secret]
redirect_uri = [your redirect uri]
And you call the alternative constructor by passing the path to the .ini file
$_TK = TikTokLoginKitConnector::fromIni(__DIR__.'/env.ini');
Refer to the examples folder for a quick examples of how to use the login, fetch and paginate videos, publish videos