You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, TikTokPy loads TikTok's website to grab data. This circumvents the need for a verify_fp cookie, but it increases runtime and hinders scalability.
Changes could be made such that API calls are made directly instead of loading pages. A page should only be loaded completely when the API call doesn't work. This could reload the cookies necessary to make future API calls.
Steps towards accomplishing goal:
Identify TikTok API calls necessary to get the information currently expected by TikTokPy
Migrate TikTokPy calls to using API calls unless overridden manually
Create automatic override determined by cookie staleness
The text was updated successfully, but these errors were encountered:
* Create functions for executing API calls of 4 kinds:
* comment/list/ - video comments
* post/item_list/ - user posts
* challenge/item_list/ - popular videos tagged with a challenge
* related/item_list/ - videos related to this one
* Opens up potential future resolutions for #35, #38, #40, #43, and #44
At the moment, TikTokPy loads TikTok's website to grab data. This circumvents the need for a
verify_fp
cookie, but it increases runtime and hinders scalability.Changes could be made such that API calls are made directly instead of loading pages. A page should only be loaded completely when the API call doesn't work. This could reload the cookies necessary to make future API calls.
Steps towards accomplishing goal:
The text was updated successfully, but these errors were encountered: