sabri/tiktok

There is no license information available for the latest version (v1.0.2) of this package.

sabri/tiktok is php Tiktok scraper

v1.0.2 2020-12-07 12:20 UTC

This package is not auto-updated.

Last update: 2024-09-24 06:26:35 UTC


README

Build Status

This is a PHP implementation for scraping Tiktok (or Musically) through API.

PHP 7.3 is required

Scraper API

  • getUser($uid) Returns user profile data. $uid is a user's Tiktok unique id.
  • getUserVideos($uid) Returns a list of user videos. $uid is a user's Tiktok unique id.
  • searchUser($keyword) Returns user search results.
  • getVideo($uid) Returns a video datails. $uid is a video Tiktok unique id.
  • searchHashtags($keyword) Returns a list of found hashtags.
  • getHashtagMedia($uid) Returns a list of videos for a certain hashtag. $uid is a hashtag Tiktok unique id.

Your contribution is welcome!

Use this scraper

In order to use and make requests to Tiktok API, some extra device parameters are needed. These parameters should be extracted from your mobile phone by using a man in the middle proxy. I used PacketCapture for Android, you may use any proxy application you like. Grab the following parameters: device_id, iid, openudid.

Run the example

  • Install commposer packages in the root of the project. composer install
  • Run php demo.php to see the results

Run tests

  • Before runing tests you should modify and set correct environment variables tests/bootstrap.php.
  • Do not commit tests/bootstrap.php after your changes.