drawrowfly / tiktok-scraper

TikTok Scraper. Download video posts, collect user/trend/hashtag/music feed metadata, sign URL and etc.
4.4k stars 799 forks source link

Is this still working ? #824

Open Yogabayu opened 9 months ago

Yogabayu commented 9 months ago

i have zero output with :

tiktok-scraper trend -n 20 -d -w -t csv

is this tool still work ?

ebowwa commented 9 months ago

have you found out?

Yogabayu commented 9 months ago

nope, this not work anymore

TrentaIcedCoffee commented 8 months ago

Is it like nothing works or just that cmd doesn't work? Also, have you find any alternatives? Thanks!

Yogabayu commented 8 months ago

this not work anymore, and i can't found any alternatives. if you found it please reply this comment, thanks

tg-z commented 8 months ago

Hi, I recommend this tool tiktok-to-ytdlp. Just follow the instructions in the README and it works!

cemdusenkalkan commented 8 months ago

Hi, is there any tool that can download multiple videos without watermark?

Thanks for the help!

MalikSamiAwan commented 7 months ago

i was not able to run even simple functions its either crashing or return empty results:

// Import the TikTok Scraper package
const TikTokScraper = require('tiktok-scraper');

// Function to get all data from a TikTok user
async function getAllDataFromTikTok(username) {
    try {
        // Get user data
        const userData = await TikTokScraper.getUserProfileInfo(username);
        console.log('User Data:', userData);

        // Get user's posts
        const userPosts = await TikTokScraper.user(username, { number: 30 }); // Adjust the number of posts as needed
        console.log('User Posts:', userPosts.collector);

        // Get user's following
        const userFollowing = await TikTokScraper.getFollowing(username, { number: 30 }); // Adjust the number of following as needed
        console.log('User Following:', userFollowing.collector);

    } catch (error) {
        console.error('Error:', error);
    }
}

// Replace 'tiktokusername' with the actual TikTok username
getAllDataFromTikTok('waqascheema008');

is there anyone who was able to perform these