Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Throttle requests to TikTok #659

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ const startScraper = async argv => {
if (argv.historypath) {
argv.historyPath = argv.historypath;
}
if (argv.throttleinterval || argv.throttlelimit) {
argv.throttleLimit = argv.throttlelimit;
argv.throttleInterval = argv.throttleinterval;
}
if (argv.file) {
argv.input = argv.file;
}
Expand Down Expand Up @@ -205,6 +209,12 @@ yargs
default: process.env.SCRAPING_FROM_DOCKER ? '' : tmpdir(),
describe: 'Set custom path where history file/files will be stored',
},
throttlelimit: {
describe: 'Set custom maximum number of calls to TikTok within an interval.',
},
throttleinterval: {
describe: 'Set custom timespan for throttle-interval in milliseconds',
},
remove: {
alias: ['r'],
default: '',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"jsdom": "^16.5.3",
"json2csv": "4.5.1",
"ora": "^4.0.2",
"p-throttle": "^4.1.1",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
Expand Down
15 changes: 15 additions & 0 deletions src/core/TikTok.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { EventEmitter } from 'events';
import { SocksProxyAgent } from 'socks-proxy-agent';
import { forEachLimit } from 'async';
import { URLSearchParams } from 'url';
import pThrottle from 'p-throttle';
import CONST from '../constant';
import { sign, makeid } from '../helpers';

Expand Down Expand Up @@ -125,6 +126,8 @@ export class TikTokScraper extends EventEmitter {

private store: string[];

private throttle: ReturnType<typeof pThrottle> | false;

public cookieJar: CookieJar;

constructor({
Expand Down Expand Up @@ -157,6 +160,8 @@ export class TikTokScraper extends EventEmitter {
headers,
verifyFp = '',
sessionList = [],
throttleLimit,
throttleInterval,
}: TikTokConstructor) {
super();
this.userIdStore = '';
Expand Down Expand Up @@ -221,6 +226,16 @@ export class TikTokScraper extends EventEmitter {
bad: 0,
};
this.store = [];
this.throttle =
!!(throttleLimit && throttleInterval) &&
pThrottle({
limit: throttleLimit,
interval: throttleInterval,
});

if (this.throttle) {
this.request = <TikTokScraper['request']>this.throttle(this.request);
}
}

/**
Expand Down
4 changes: 4 additions & 0 deletions src/types/TikTok.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export interface Options {
remove?: string;
fileName?: string;
historyPath?: string;
throttleLimit?: number;
throttleInterval?: number;
timeout?: number;
hdVideo?: boolean;
randomUa?: boolean;
Expand Down Expand Up @@ -83,6 +85,8 @@ export interface TikTokConstructor {
headers: Headers;
verifyFp?: string;
sessionList?: string[];
throttleLimit?: number;
throttleInterval?: number;
}

export interface Hashtags {
Expand Down