定制 daaner/tiktok 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

daaner/tiktok

最新稳定版本:0.2

Composer 安装命令:

composer require daaner/tiktok

包简介

TikTok scrapper for Laravel 7+

README 文档

README

Scrutinizer Code Quality Laravel Support PHP Support Latest Stable Version Official Site Total Downloads License

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 info
  • getTagInfo($tag) - Get tag simple info
  • getTagApi($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 info
  • getMusicInfo($music) - Get music simple info
  • getMusicApi($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 info
  • getDiscoverApi($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.

统计信息

  • 总下载量: 4.08k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 11
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-11-22