wkaisertexas / tiktok-uploader

Automatically ⬆️ upload TikTok videos
https://pypi.org/project/tiktok-uploader/
352 stars 84 forks source link

Tiktok just changed their publish interface, and the automation stopped working... #122

Open felipexpert opened 4 months ago

felipexpert commented 4 months ago

The new publishing tiktok interface has changed, this script is no longer working, please, who created this great tool, make it work again

joaovit1 commented 4 months ago

Mine stopped working today too, checked a few paths,

My code was working even with the error mentioned in #116, now it is failing without any new errors

It uploads the video and is not detecting the video was uploaded, not sure if the "title" being searched in here:

upload_confirmation = "//div[@title]"

Is the same as I changed to:

upload_confirmation = "//div[contains(@class, 'info-title')]"

However now it is detecting the video was uploaded, now there are problems with the paths when setting the hashtags, scheduling and maybe posting too

callum-fortune commented 4 months ago

joaovit1 is correct here in that a selector (post_confirmation) needs changing to match the new text in the TikTok UI. This has been addressed in my PR (https://github.com/wkaisertexas/tiktok-uploader/pull/125).

Hopefully that solves your issue.