PHP code example of kkgerry / tiktokshop-od-larevel
1. Go to this page and download the library: Download kkgerry/tiktokshop-od-larevel 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/ */
kkgerry / tiktokshop-od-larevel example snippets
use Kkgerry\TiktokShop\Client;
$app_key = 'your app key';
$app_secret = 'your app secret';
$client = new Client($app_key, $app_secret);
$auth = $client->auth();
$_SESSION['state'] = $state = str_random(40); // random string
$auth->createAuthRequest($state);
$authUrl = $auth->createAuthRequest($state, true);
// redirect user to auth url
header('Location: '.$authUrl);
$access_token = $token['access_token'];
$client->setAccessToken($access_token);
$authorizedShopList = $client->Authorization->getAuthorizedShop();
// extract shop_id & cipher from $authorizedShopList for use later