TikTok-Api - api.get_Video_No_Watermark is not working
Describe the bug
I haven't used this api for a while, after update latest version i cant use api.get_Video_No_Watermark. it only download 81 bytes video, sometimes returning NoneType
6 Answer:
Well that's kind of annoying. I would assume there's some way to use the details of the tiktok json object to generate the key for the video download, but I doubt it would be easy to figure out.
I wonder how its possible that this website has the possibility to get the without watermark video. https://snaptik.app
@jjohnreese I don't believe we have, but in the meantime you can use
import requests def download_no_wm(url, get_bytes=1): url = url.split("?")[0] base_url = "https://savevideo.ninja/wp-admin/admin-ajax.php?action=wppress_tt_download&url={}&key=no-watermark".format(url) if get_bytes == 1: r = requests.get(base_url) return r.content else: return base_url
although, I'm not liable for anything you use this for.
how to use this
Hmm. I am owner of savevideo.ninja .. and I would suggest not to add too many requests on the server.
I have cheap RapidAPI endpoint that you can use for affordable price if you want to use https://rapidapi.com/wppressapi-wppressapi-default/api/tiktok9/endpoints
great blog, very informative thanks for sharing
The blog "TikTok API: api/getVideo no watermark is not working [Python]" offers a comprehensive guide for developers seeking to retrieve TikTok videos without a watermark. The author provides detailed explanations and code snippets to troubleshoot any issues that may arise during the process. As someone interested in tech and app development, I found this blog to be an excellent resource. The insights shared here are valuable, and I look forward to applying them in my future projects, such as creating an app that sells LA jackets.