Full Code of mgp25/TikTok for AI

master 3767b57b7768 cached
5 files
2.8 KB
780 tokens
1 requests
Download .txt
Repository: mgp25/TikTok
Branch: master
Commit: 3767b57b7768
Files: 5
Total size: 2.8 KB

Directory structure:
gitextract_kwndhrha/

├── .ac-php-conf.json
├── .gitattributes
├── .gitignore
├── .php_cs.dist
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .ac-php-conf.json
================================================
{
    "use-cscope": null,
    "tag-dir": "./ac-php-tags",
    "filter": {
        "can-use-external-dir": false,
        "php-file-ext-list": [
            "php"
        ],
        "php-path-list": [
            "./src",
            "./vendor/guzzlehttp",
            "./vendor/lazyjsonmapper/lazyjsonmapper/src",
            "./vendor/psr"
        ],
        "php-path-list-without-subdir": []
    }
}


================================================
FILE: .gitattributes
================================================
# Auto detect text files and perform LF normalization
* text=auto


================================================
FILE: .gitignore
================================================
# runtime files
*.lock

# third party libraries
vendor/

# temporary editor files
*.swp
.\#*
*.sublime-project
*.sublime-workspace

# operating system cache files
.DS_Store
Desktop.ini
Thumbs.db

# third party libraries
vendor/
.php_cs
.php_cs.cache
test.php

# Sessions
sessions/


================================================
FILE: .php_cs.dist
================================================
<?php

return PhpCsFixer\Config::create()
    ->setFinder(
        PhpCsFixer\Finder::create()
        ->in(__DIR__)
    )
    ->setIndent('    ')
    ->setLineEnding("\n")
    ->setRules([
        '@Symfony'                            => true,
        // Override @Symfony rules
        'pre_increment'                       => false,
        'blank_line_before_statement'         => ['statements' => ['return', 'try', 'throw']],
        'phpdoc_align'                        => ['tags' => ['param', 'throws']],
        'method_argument_space'               => ['ensure_fully_multiline' => false],
        'binary_operator_spaces'              => [
            'align_double_arrow' => true,
            'align_equals'       => false,
        ],
        'phpdoc_annotation_without_dot'       => false,
        'yoda_style'                          => [
            // Symfony writes their conditions backwards; we use normal order.
            'equal'            => false,
            'identical'        => false,
            'less_and_greater' => false,
        ],
        'is_null'                             => [
            // Replaces all is_null() with === null.
            'use_yoda_style' => false,
        ],
        // Custom rules
        'align_multiline_comment'             => true,
        'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
        'ordered_imports'                     => true,
        'phpdoc_order'                        => true,
        'array_syntax'                        => ['syntax' => 'short'],
    ]);


================================================
FILE: README.md
================================================

# Terms and conditions

- You will NOT use this API for marketing purposes (spam, botting, harassment, massive bulk messaging...).
- We do NOT give support to anyone who wants to use this API to send spam or commit other crimes.
- We reserve the right to block any user of this repository that does not meet these conditions.

## Legal

This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by TikTok or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use at your own risk.
Download .txt
gitextract_kwndhrha/

├── .ac-php-conf.json
├── .gitattributes
├── .gitignore
├── .php_cs.dist
└── README.md
Condensed preview — 5 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3K chars).
[
  {
    "path": ".ac-php-conf.json",
    "chars": 403,
    "preview": "{\n    \"use-cscope\": null,\n    \"tag-dir\": \"./ac-php-tags\",\n    \"filter\": {\n        \"can-use-external-dir\": false,\n       "
  },
  {
    "path": ".gitattributes",
    "chars": 66,
    "preview": "# Auto detect text files and perform LF normalization\n* text=auto\n"
  },
  {
    "path": ".gitignore",
    "chars": 281,
    "preview": "# runtime files\n*.lock\n\n# third party libraries\nvendor/\n\n# temporary editor files\n*.swp\n.\\#*\n*.sublime-project\n*.sublime"
  },
  {
    "path": ".php_cs.dist",
    "chars": 1565,
    "preview": "<?php\n\nreturn PhpCsFixer\\Config::create()\n    ->setFinder(\n        PhpCsFixer\\Finder::create()\n        ->in(__DIR__)\n   "
  },
  {
    "path": "README.md",
    "chars": 541,
    "preview": "\n# Terms and conditions\n\n- You will NOT use this API for marketing purposes (spam, botting, harassment, massive bulk mes"
  }
]

About this extraction

This page contains the full source code of the mgp25/TikTok GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 5 files (2.8 KB), approximately 780 tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!