Questions tagged [tiktok-api]

TikTok API v2 allows for access to tiktok via a rest api endpoints.

TikTok API v2

44 questions
0
votes
0 answers

Run Tkinter and TikTokLiveClient in the same time

Can you please tell me, if there exists a solution to run a Tkinter Gui and a TikTok live Client in the same time, because when I run the program only first of them starts. import tkinter as tk from TikTokLive import TikTokLiveClient root =…
0
votes
0 answers

TikTok API: copy of Ad Group

Tell me, does the TikTok API have the ability to copy the Ad Group? Or, how can this be implemented in code? (are there code examples?) I did not find in the documentation the ability to create copies, as, for example, with Facebook. Such a function…
Veliarian
  • 1
  • 1
0
votes
2 answers

Get user data without login using TikTok API

Is there a way to get public user data such as likes and number of followers from the TikTok API without authentication or login? There must be a way, since anonymous TikTok viewers such as xaller.com or urlebird.com claim to get their data using…
gbiz123
  • 11
  • 6
0
votes
1 answer

Video Kit Tiktok (Response Success but not Received in Inbox)

I was try to Video Kit in Tiktok Video Kit Documentation But, sometimes the response from their API is successful and gets the share_id. But, after I checked the Tiktok application for a while, I didn't get the notification. I use the Video Kit with…
Azickri
  • 35
  • 5
0
votes
2 answers

Missing fields error when making a post request in Laravel

I am making a post request to the tiktok API, entering the 3 parameters that are requested, but when I carry out the request, it shows me the following: "Required fields are missing: app_id is required.", I attach an image: enter image description…
Julio
  • 29
  • 5
0
votes
0 answers

I need to create a tiktok video Downloader

I'm trying to create a tiktok downloader, So i'm trying to download videos from the video id , x = int(input("Enter an integer >>>")) R = print(f"https://api16-normal-useast5.us.tiktokv.com/aweme/v1/aweme/detail/?aweme_id={x}") i use this code to…
0
votes
1 answer

TikTok Web API invalid scope

I have successfully implemented the whole TikTok authentication process with the basic scope: basic.user.info. However I can't add an additional scope (video.list), every time I go to the authorization page, TikTok returns an error saying that my…
thomasA
  • 257
  • 1
  • 4
  • 11
0
votes
0 answers

Anyone know a way to see who was tagged in a User's Videos on Tiktok?

Relevant link: https://developers.tiktok.com/ I'm currently querying for my own videos using my access token and getting all fields listed as available when hitting the query video endpoint. I don't see any reference to "tagged" users. I can see who…
bobber205
  • 12,948
  • 27
  • 74
  • 100
0
votes
0 answers

TikTok API for Business - sharing apps with multiple users

I have registered as a developer for the TikTok API for Business from the page https://ads.tiktok.com/marketing_api/homepage. Now I would like to invite my colleague so that both of us could manage the Business API (manage the apps, access tokens).…
Martin Staufcik
  • 8,295
  • 4
  • 44
  • 63
0
votes
0 answers

TypeError: object of type 'Trending' has no len() and Trending() takes no arguments in Python

I have this code which I took from the davidteather/TikTok-Api documentation and website. There are two problems that I am facing. The first one is "TypeError: Trending() takes no arguments" which is caused by the "tiktoks =…
0
votes
0 answers

TikTokApi giving me an error and I don't know why-

Code: from TikTokApi import TikTokApi api = TikTokApi() for video in api.trending.videos(): print(video.as_dict) Error: Traceback (most recent call last): File "d:\TikTok\TikTok ID Samples.py", line 3, in for video in…
Zen35X
  • 76
  • 2
  • 10
0
votes
0 answers

How to create a "topview" ad in tiktok using the API?

How to create a "topview" ad in tiktok using the API ? I know that it's possible using their interface, but I don't have access to that. I can create ads to show in-feed, but I can't find the "topview" anywhere in their docs. Can someone point to…
0
votes
1 answer

TikTok authorization with ngrok

I am trying to test tiktok authorization using ngrok since it doesn't seem to want to let me use localhost. I have configured the redirect uri and saved it I am using the following…
Linda Lawton - DaImTo
  • 106,405
  • 32
  • 180
  • 449
-1
votes
1 answer

Creating an Ad on TikTok sandbox account is requesting "identity_id" v.1.3. Where can i find it

I'm using v1.3 and i want to create and add, however it is requesting the identity_id which i do not know where to find it. "identity_id": "xxxxxxxxx", This is my end point https://sandbox-ads.tiktok.com/open_api/v1.3/ad/create/ I tried commenting…
1 2
3