pablouser1 / tikscraper
Get data from TikTok API
Installs: 4 078
Dependents: 0
Suggesters: 0
Security: 0
Stars: 45
Watchers: 4
Forks: 18
Open Issues: 4
Requires
- php: >=7.4|^8.0
- ext-curl: *
- ext-json: *
- ext-xml: *
- guzzlehttp/guzzle: ^7.8
- php-webdriver/webdriver: ^1.12
- sapistudio/seleniumstealth: ^1.0
Requires (Dev)
- pestphp/pest: ^1.22
- dev-master
- 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: 2023-11-06 22:31:23 UTC
README
A Wrapper for the TikTok API made with PHP
How to Use
$api = new \TikScraper\Api([ 'user_agent' => 'YOUR_CUSTOM_USER_AGENT_HERE', 'cookie_path' => 'PATH_HERE', // Path to store TikTok's cookies, defaults to /tmp/tiktok.json 'proxy' => 'http://user:password@hostname:port', // More info about signing below 'signer' => [ 'method' => 'remote', 'url' => 'http://localhost:8080/signature', 'close_when_done' => true // ONLY FOR BROWSER SIGNING, set to true if you want to quit the browser after making the request (default true) ] ], $cacheEngine); $hashtag = $api->hashtag('funny'); $hashtag->feed(); if ($hastag->ok()) { echo $hashtag->getFull()->toJson(true); } else { print_r($hashtag->error()); }
Signing
For using TikScrapperPHP you need to use a signing service. There are multiple available:
Remote signing
This method involves using an external signer.
- Set 'method' to
remote
- Set 'url' to the signing endpoint
Currently supported:
- tiktok-signature (uses headless Chrome browser)
- SignTok (uses JSDOM)
Browser
This method involves using a chromedriver instance.
- Set 'method' to
browser
- Set 'url' to the chromedriver endpoint (usually http://localhost:4444)
You can also generate the documentation available using PHPDoc
Caching
TikScrapperPHP supports caching requests, to use it you need to implement CacheInterface.php
TODO
- Search
- Comments
Credits
- @Sharqo78: Working TikTok downloader without watermark
HUGE thanks to the following projects, this wouldn't be possible without their help