daaner / tiktok
TikTok scrapper for Laravel 7+
Installs: 2 136
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 1
Forks: 0
Open Issues: 2
Requires
- php: >=7.2.5
- laravel/framework: >=7.0
README
Scraper TikTok (tiktok.com) using this Laravel framework package (Laravel).
Requirement
- Laravel >= 7
- PHP >= 7.2.5
Install
Install package.
composer require daaner/tiktok
Add provider and facade in config/app.php
.
Daaner\TikTok\TikTokServiceProvider::class, // --- 'TikTok' => Daaner\TikTok\Facades\TikTok::class,
Publish the config and localization files with the command:
php artisan vendor:publish --provider="Daaner\TikTok\TikTokServiceProvider"
Configuration
No special settings are needed. Queries also work with default settings. If you need finer settings, change the config file config/tiktok.php
after
If necessary, write the settings to a .env
.
Used
Use the model you want and get an array.
Model - UserInfo
getUser($userName)
- Get user data by name (full array)getUserInfo($userName)
- Get simple user data by name (only main and secondary array)
use Daaner\TikTok\Models\UserInfo; $tt = new UserInfo; $user = $tt->getUser('tiktok'); //or $user = $tt->getUser('@tiktok'); // or for simple info $user = $tt->getUserInfo('tiktok'); dd($user);
Model - TagInfo
getTag($tag)
- Get tag infogetTagInfo($tag)
- Get tag simple infogetTagApi($id, $count = 30, $cursor = 0)
- Get tag id data
use Daaner\TikTok\Models\TagInfo; $tt = new TagInfo; $tag = $tt->getTag('apple'); //or $tag = $tt->getTag('#apple'); // or for simple $tag = $tt->getTagInfo('apple'); //and API data $tag = $tt->getTagApi('13100', 10, 0); dd($tag);
Model - MusicInfo
getMusic($music)
- Get music infogetMusicInfo($music)
- Get music simple infogetMusicApi($id, $count = 30, $cursor = 0)
- Get music id data (count shows 1 item less only this API query)))))
use Daaner\TikTok\Models\MusicInfo; $tt = new MusicInfo; $music = $tt->getMusic('I-JUST-FELL-6768866707013388289'); //or $music = $tt->getMusic('6768866707013388289'); // or for simple $music = $tt->getMusicInfo('6768866707013388289'); //and API data $music = $tt->getMusicApi('6728860413338847233', 10, 2); dd($music);
Model - DiscoverInfo
getDiscover()
- Get discover infogetDiscoverApi($type)
- Get Suggested data
use Daaner\TikTok\Models\DiscoverInfo; $tt = new DiscoverInfo; $discover = $tt->getDiscover(); //and API data $discover = $tt->getDiscoverApi('user'); //or $discover = $tt->getDiscoverApi('music'); //or $discover = $tt->getDiscoverApi('challenge'); dd($discover);
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.