avilash / TikTokAPI-Python

TikTok API Python Wrapper
http://avilashkumar.com/TikTokAPI-Python/
MIT License
445 stars 114 forks source link

tt_webid Doesn't exist in the cookies list #75

Open khan-asfi-reza opened 10 months ago

khan-asfi-reza commented 10 months ago
image
LGCN-Q commented 10 months ago

Sample issue.

alf1983 commented 9 months ago

TikTok changed the name and format of the tt_webid value to ttwid in cookies replaced in the file TikTokAPI/tiktokapi.py line 28 'Cookie': 'tt_webid_v2={}; tt_webid={}'.format(self.tt_webid, self.tt_webid) to 'Cookie': 'ttwid={}'.format(self.tt_webid)

thongvhoang commented 9 months ago

TikTok changed the name and format of the tt_webid value to ttwid in cookies replaced in the file TikTokAPI/tiktokapi.py line 28 'Cookie': 'tt_webid_v2={}; tt_webid={}'.format(self.tt_webid, self.tt_webid) to 'Cookie': 'ttwid={}'.format(self.tt_webi

That's right. Thank you so much. I found it.

chrisbuetti commented 5 months ago

@thongvhoang did you ever get this working