npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tiktok-unofficial-sdk

v1.0.6

Published

A simple SDK for interacting with the TikTok API

Downloads

21

Readme

TikTok SDK

A simple SDK for interacting with the TikTok API. This SDK provides methods to fetch user information, liked videos, pinned videos, reposted videos, followers, following lists, and querying videos.

Features

  • Fetch user info
  • Fetch user's liked videos
  • Fetch user's pinned videos
  • Fetch user's reposted videos
  • Fetch user's followers
  • Fetch user's following
  • Query videos

Installation

You can install the SDK via npm:

npm install tiktok-unofficial-sdk

Usage

Import the SDK

import TikTokClient from 'tiktok-unofficial-sdk';

Initialize the Client

Create an instance of the TikTokClient. Ensure you replace YOUR_CLIENT_ID_HERE and YOUR_CLIENT_SECRET_HERE with your actual TikTok API credentials.

const client = new TikTokClient();

Fetch User Information

To fetch user information, use the getUserInfo method. You need to specify the username and the fields you want to retrieve.

const username = 'test_username';
const userInfoFields = ['display_name', 'bio_description', 'avatar_url', 'is_verified', 'follower_count', 'following_count', 'likes_count', 'video_count'];

const userInfo = await client.user.getUserInfo(username, userInfoFields);
console.log(userInfo);

Fetch User's Liked Videos

To fetch a user's liked videos, use the get method with the type 'likes'. You need to specify the username, the fields you want to retrieve, and optionally the maximum count and cursor for pagination.

const userVideoFields = ['id', 'create_time', 'username', 'region_code', 'video_description', 'music_id', 'like_count', 'comment_count', 'share_count', 'view_count', 'hashtag_names'];

const likedVideos = await client.user.get('likes', username, userVideoFields);
console.log('Liked Videos:', likedVideos);

Fetch User's Pinned Videos

To fetch a user's pinned videos, use the get method with the type 'pinned'.

const pinnedVideos = await client.user.get('pinned', username, userVideoFields);
console.log('Pinned Videos:', pinnedVideos);

Fetch User's Reposted Videos

To fetch a user's reposted videos, use the get method with the type 'reposted'.

const repostedVideos = await client.user.get('reposts', username, userVideoFields);
console.log('Reposted Videos:', repostedVideos);

Fetch User's Followers

To fetch a user's followers, use the get method with the type 'followers'.

const userFollowersFields = ['id', 'username', 'display_name', 'avatar_url', 'follower_count', 'following_count'];

const followers = await client.user.get('followers', username, userFollowersFields);
console.log('Followers:', followers);

Fetch User's Following

To fetch a user's following, use the get method with the type 'following'.

const following = await client.user.get('following', username, userFollowersFields);
console.log('Following:', following);

Query Videos

To query videos using the TikTok Research API, use the query method from the Videos module.

Parameters:

  • query: Query object containing the conditions.
  • fields: A comma-separated string of fields to retrieve.
  • start_date: The lower bound of video creation time in UTC (YYYYMMDD).
  • end_date: The upper bound of video creation time in UTC (YYYYMMDD).
  • max_count (optional): The number of videos in response (default: 20, max: 100).
  • cursor (optional): Retrieve video results starting from the specified index.
  • search_id (optional): The unique identifier assigned to a cached search result.
  • is_random (optional): Whether to return results in a random order.

Example:

const query = {
  and: [
    { field_name: 'region_code', operation: 'IN', field_values: ['JP', 'US'] },
    { field_name: 'hashtag_name', operation: 'EQ', field_values: ['animal'] }
  ],
  not: [
    { field_name: 'video_length', operation: 'EQ', field_values: ['SHORT'] }
  ]
};

const fields = 'id,video_description,create_time';
const start_date = '20230101';
const end_date = '20230115';

const response = await client.videos.query(query, fields, start_date, end_date);
console.log(response);

API Reference

TikTokClient

The main class for interacting with the TikTok API.

Constructor

new TikTokClient()

Methods

fetchApi

A generic method to fetch data from the TikTok API.

fetchApi(endpoint: string, method: string = 'GET', body: any = null): Promise<any>

TikTokUser

A class for user-related methods.

getUserInfo

Fetch user information.

getUserInfo(username: string, fields: UserInfoFields[]): Promise<any>

get

Fetch user's liked, pinned, reposted videos, followers, or following.

get(type: 'likes' | 'pinned' | 'reposted' | 'followers' | 'following', username: string, fields: UserVideoFields[] | UserFollowersFields[], maxCount?: number, cursor?: number | null): Promise<any>

Videos

A class for video-related methods.

query

Query videos using the TikTok Research API.

query(query: Query, fields: string, start_date: string, end_date: string, max_count?: number, cursor?: number, search_id?: string, is_random?: boolean): Promise<QueryVideoResponseData>

Query Video Comments

To query video comments using the TikTok Research API, use the queryComments method from the Videos module.

Parameters:

  • video_id: The ID of the video to query comments for.
  • fields: A comma-separated string of fields to retrieve.
  • max_count (optional): The number of comments in response (default: 10, max: 100).
  • cursor (optional): The starting index of the comments in the response.

Example:

const video_id = 1234567890123456789;
const fields = 'id,like_count,create_time,text,video_id,parent_comment_id';

const comments = await client.videos.queryComments(video_id, fields, 50, 150);
console.log(comments);

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

This SDK is not affiliated with or endorsed by TikTok. It is a simple wrapper to facilitate interaction with the TikTok API.