pablouser1 / tikscraper
Get data from TikTok API
Installs: 4 609
Dependents: 0
Suggesters: 0
Security: 0
Stars: 66
Watchers: 4
Forks: 20
Open Issues: 9
Language:JavaScript
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.9
- php-webdriver/webdriver: ^1.12
Requires (Dev)
- pestphp/pest: ^1.22
- dev-master
- v2.6.2.0
- v2.6.1.2
- v2.6.1.1
- v2.6.1.0
- v2.6.0.5
- v2.6.0.4
- v2.6.0.3
- v2.6.0.2
- v2.6.0.1
- v2.6.0.0
- v2.5.1.1
- v2.5.1.0
- v2.5.0.1
- v2.5.0.0
- v2.4.0.3
- v2.4.0.2
- v2.4.0.1
- v2.4.0.0
- v2.3.6.4
- v2.3.6.3
- v2.3.6.2
- v2.3.6.1
- v2.3.6.0
- v2.3.5.0
- v2.3.4.1
- v2.3.4.0
- v2.3.3.5
- v2.3.3.4
- v2.3.3.3
- v2.3.3.2
- v2.3.3.1
- v2.3.3.0
- v2.3.2.2
- v2.3.2.1
- v2.3.2.0
- v2.3.1.1
- v2.3.1.0
- v2.3.0.1
- v2.3.0.0
- v2.2.1.1
- v2.2.1.0
- v2.2.0.0
- v2.1.2.0
- v2.1.1.0
- v2.1.0.2
- v2.1.0.1
- v2.1.0.0
- v2.0.2.1
- v2.0.2.0
- v2.0.1.6
- v2.0.1.5
- v2.0.1.4
- v2.0.1.3
- v2.0.1.2
- v2.0.1.1
- v2.0.1.0
- v2.0.0.0
- v1.3.5.2
- v1.3.5.1
- v1.3.5.0
- v1.3.4.1
- v1.3.4.0
- v1.3.3.4
- v1.3.3.3
- v1.3.3.2
- v1.3.3.1
- v1.3.3.0
- v1.3.2.0
- v1.3.1.0
- v1.3.0.5
- v1.3.0.4
- v1.3.0.3
- v1.3.0.2
- v1.3.0.1
- v1.3.0.0
- v1.2.7.6
- v1.2.7.5
- v1.2.7.4
- v1.2.7.3
- v1.2.7.2
- v1.2.7.1
- v1.2.7
- v1.2.6
- v1.2.5.2
- v1.2.5.1
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.0
This package is auto-updated.
Last update: 2024-10-28 12:49:30 UTC
README
A Wrapper for the TikTok API made with PHP >= 8.1
How to Use
$api = new \TikScraper\Api([ 'debug' => false, // Debug mode 'browser' => [ 'url' => 'http://localhost:4444', // Url to your chromedriver instance 'close_when_done' => false, // Close chrome instance when request finishes ], 'verify_fp' => 'verify_...', // Cookie used for skipping captcha requests 'device_id' => '596845...' // Custom device id 'user_agent' => 'YOUR_CUSTOM_USER_AGENT_HERE', 'proxy' => 'http://user:password@hostname:port' ], $cacheEngine); $tag = $api->hashtag('funny'); $tag->feed(); if ($hastag->ok()) { echo $hashtag->getFull()->toJson(true); } else { print_r($hashtag->error()); }
Documentation
An initial version of the documentation is available here
Caching
TikScrapperPHP supports caching requests, to use it you need to implement ICache.php
TODO
- Search
- Comments
Left to implement from legacy
- For the love of god, actually document everything properly this time
Credits
- @Sharqo78: Working TikTok downloader without watermark
HUGE thanks to the following projects, this wouldn't be possible without their help
- puppeteer-extra-plugin-stealth, ported library to PHP
- TikTok-API-PHP
- TikTok-Api
- tiktok-signature
- tiktok-scraper