TikTok-Api
TikTok-Api copied to clipboard
[BUG] - V5.0.0 user_example.py raises TikTokCaptchaError when calling user.videos
Trying out the TikTokApi v5.0.0 user_example.py example on Windows 10 Python 3.9.7 , the call on line 8:
for video in user.videos():
raises a TikTokApi.exceptions.TikTokCaptchaError
: TikTok blocks this request displaying a Captcha
I tried the example both initializing TikTokApi passing a custom_verify_fp value, and initializing with no parameters with the same result both times. I also tried use_test_endpoints=True and got the same result.
I am also facing the same issue.
I initially fixed this by using the custom_verify_fp
option. It is still working for me. My problem right now, is how do you generate more custom_verify_fp
tokens? TikTok is no longer sending a s_v_web_id
cookie
Using custom_verify_fp and it doesn't work for me anymore
I have same problem
I am doing following to generate new custom_verify_fp
:
- Go to www.tiktok.com
- Sign into www.tiktok.com with email
- Verify captcha
- This generates new
s_v_web_id
However, when I try to use s_v_web_id
for custom_verify_fp
it gives 10000 status code.
hi Popesties, I follow your step to get s_v_web_id
, but I dont have s_v_web_id
in cookie
Hi @impossibleno1 - try to find your cookies using f12: https://developer.chrome.com/docs/devtools/storage/cookies/
@impossibleno1 When you log in it will send you a captcha, and it will definitely generate the s_v_web_id
. But either way it will not be useful, the token generated doesn't work with this API.
Anyone managed to make user.videos() work recently ?
V6