Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/assets/libraries/tiktok/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/assets/libraries/tiktok/README.md

# TikTok Login Kit for PHP
**TikTok Login Kit** implementation in PHP based on the [official documentation](https://developers.tiktok.com/doc/login-kit-web).

This is an unofficial SDK for the official Login Kit APIs.

## Features

Current features include:

- Log in with TikTok
- Retrieve Basic User Information (updated with POST params)
- Retrieve Videos
- Paginate Videos
- Refresh expired Token

### Currently Working on implementing

- share.sound.create

## Installation

Install via Composer

```
composer require gimucco/tiktok-loginkit
```

## Requirements

You need to have your app set up and approved in the [TikTok Developer Portal](https://developers.tiktok.com/). 

When you register your app, make sure that the **Redirect domain** is set to the actual **Redirect URI** you use to initialize the class. Even if the Official TikTok Documentation says "domain", they actually expect the full URL. 

## Code Example for Logging in and retrieving basic info
```
// Initialize the class. 
// $client_id and $client_secret are provided by TikTok. 
// $redirect_uri must be approved in the TikTok developer portal.
$_TK = new TikTokLoginKit\Connector($client_id, $client_secret, $redirect_uri);
if (TikTokLoginKit\Connector::receivingResponse()) { 
	try {
		$token = $_TK->verifyCode($_GET[TikTokLoginKit\Connector::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 '<br /><a href="?">Retry</a>';
	}
} else {
	echo '<a href="'.$_TK->getRedirect().'">Log in with TikTok</a>';
}
```

## Alternative Constructor
If you prefer to use a .ini file to pass the api credentials, you can use the ```TikTokLoginKit\Connector::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 = TikTokLoginKit\Connector::fromIni(__DIR__.'/env.ini');
```

## Examples
Refer to the examples folder for a quick examples of how to use the login, fetch and paginate videos