メインコンテンツまでスキップ

おすすめフォロースクリプト設定

このページでは、タスク作成に使用されるfollow_suggestedスクリプトの設定パラメータを説明します。

概要

follow_suggestedスクリプトは、TikTokのおすすめタブにあるおすすめアカウントを自動的にフォローします。プロフィール → フォロー中 → おすすめページに移動し、最大フォロー数に達するまで利用可能なすべてのFollowボタンをクリックします。

備考

このスクリプトはTikTokアカウントにのみ対応しています。

パラメータ

パラメータタイプ必須デフォルト説明
max_follow_countintegerいいえ20フォローする最大アカウント数

基本的な使用法

curl -X POST http://localhost:50809/api/v1/task \
-H "Content-Type: application/json" \
-d '{
"serials": ["device_serial_1"],
"script_name": "follow_suggested",
"script_config": {
"max_follow_count": 30
}
}'

レスポンス

{
"code": 0,
"message": "success",
"data": {
"task_ids": [301],
"created_count": 1
}
}

関連項目