Giter VIP home page Giter VIP logo

Comments (3)

drawrowfly avatar drawrowfly commented on May 19, 2024 1

Works now from the latest version

@charlesLoder i still appreciate your efforts with the pull requests, from now all the tests are done after you submit the pull! Thank You

from tiktok-scraper.

drawrowfly avatar drawrowfly commented on May 19, 2024

Will take a look at it later

As always PR is welcome

from tiktok-scraper.

charlesLoder avatar charlesLoder commented on May 19, 2024

Hey, so I decided to take a look at this, but I didn't want to submit a PR without a little discussion first because I'm more of a hobbyist programmer and still relatively new to open source.

Adding a simple encodeURIComponent() seems to work:

// ./lib/index.js

/**
  * Get hashtag ID
  */
    async getHashTagId() {
        try {
            return await this.getIds({
                uri: `${this.mainHost}node/share/tag/${encodeURIComponent(this.input)}`,
                type: 'hashtag',
            });
        } catch (error) {
            throw new Error(error);
        }
    }

And also at lines 240 and 643.

Just testing it out worked fine:

// test.js

const TikTokScraper = require('./index.js');

const ibriyt = 'עברית';

(async () => {
    try {
        const posts = await TikTokScraper.hashtag(ibriyt, {number: 1});
        console.log(posts);
    } catch (error) {
        console.log(error);
    }
})();

Without a test suite, I wasn't sure if this would introduce more bugs though.

from tiktok-scraper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.