A fully managed unofficial TikTok API with OAuth capabilities
npm install tikapibash
npm i tikapi@latest
`
Python 3
`bash
pip3 install tikapi
`
Usage
$3
ES6 Import Syntax is recommended
`javascript
import TikAPI from 'tikapi';
const api = TikAPI("myAPIKey");
`
#### Common JS
Import it like this in Node with CommonJS to get the Intellisense Support & Types
`javascript
const TikAPI = require('tikapi').default;
const api = TikAPI("myAPIKey");
`
$3
`python
from tikapi import TikAPI
api = TikAPI("myAPIKey")
``