Help me write a Python code to cancel TikTok likes in batches

I can provide a piece of Python code for batch canceling Douyin likes: import requests# Set the cookies of Douyin App cookies = {'cookie': 'your_cookie'}# Set the awesome_id of Douyin works aweme_ids = ['xxxx', ' xxxx', 'xxxx']for aweme_id in aweme_ids: # Build the interface to cancel likes url = f' https://aweme.snssdk.com/aweme/v1/commit/item/digg/?aweme_id={aweme_id}' # Send post request

Guess you like

Origin blog.csdn.net/weixin_35749796/article/details/129600685