主頁 > 知識(shí)庫 > Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼

Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼

熱門標(biāo)簽:梅州外呼業(yè)務(wù)系統(tǒng) 高德地圖標(biāo)注是免費(fèi)的嗎 無錫客服外呼系統(tǒng)一般多少錢 百度地圖標(biāo)注位置怎么修改 洪澤縣地圖標(biāo)注 地圖標(biāo)注視頻廣告 北京電信外呼系統(tǒng)靠譜嗎 大連crm外呼系統(tǒng) 老人電話機(jī)器人

最近抖音關(guān)注到達(dá)上限5000個(gè)了,所以就導(dǎo)致很多漂亮小姐姐沒辦法關(guān)注了,那么這里就通過python獲取已經(jīng)被封號(hào)的帳號(hào)取消關(guān)注就可以了

實(shí)現(xiàn)代碼

import requests
import json
import time

# 抖音創(chuàng)作者平臺(tái)cookie
header = {'Cookie': '你的COOKIE'}
shijian = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
sbdy = str(0)
sl = 0
file = open("D:/test.txt", "a+",encoding='utf-8')
file.write(shijian)
yczh = 0

print(str(shijian)+"\n開始檢測(cè),請(qǐng)耐心等待...")
while (sl  5000):
    url = 'https://creator.douyin.com/aweme/v1/creator/relation/following/list/?aid=2906app_name=aweme_creator_platformdevice_platform=webreferer=https:%2F%2Fcreator.douyin.com%2Fcreator-micro%2Fhomeuser_agent=Mozilla%2F5.0+(Windows+NT+10.0%3B+Win64%3B+x64)+AppleWebKit%2F537.36+(KHTML,+like+Gecko)+Chrome%2F90.0.4430.212+Safari%2F537.36cookie_enabled=truescreen_width=1536screen_height=864browser_language=zh-CNbrowser_platform=Win32browser_name=Mozillabrowser_version=5.0+(Windows+NT+10.0%3B+Win64%3B+x64)+AppleWebKit%2F537.36+(KHTML,+like+Gecko)+Chrome%2F90.0.4430.212+Safari%2F537.36browser_online=truetimezone_name=Asia%2FShanghai_signature=_02B4Z6wo00901TSjMlwAAIDChFLelrWwFwk0pzbAAC2OgYeyEeDw.eiDhwpfH.4NSilIGJd.pSZ5de4SL4e-U2DQy-VLvH0NkfwTIp14WBZCgv63l6pLIkqBZMs9VRrdqIj3xOjfyY.2y6v8decursor='+sbdy+'count=20'
    r = requests.get(url,headers=header)
    json_str = json.loads(r.text)

    if (int(json_str['status_code']) == int('0')):
        if ("user_info_list" in json_str):
            av = json_str['user_info_list']
            for d in av:
                url = str(d['avatar'])
                if (url == "c16000003f97583dac4" or url == "b76600039bd12b4c09da"):
                    print("用戶名:"+d['nickname']+" 不正常")
                    text = str('\n'+d['nickname'])
                    file.write(text)
                    sl+=1
                    yczh+=1
                else:
                    # print("用戶名:"+d['nickname']+" 正常")
                    sl+=1
            sbdy = str(json_str['cursor'])
        else:
            print("檢測(cè)完成,已檢測(cè)賬號(hào)"+str(sl)+"個(gè),異常賬號(hào)共計(jì)"+str(yczh)+"個(gè)")
            print("異常賬號(hào)存儲(chǔ)在: "+file.name)
            file.close()
            exit()
    else:
        if ("status_message" in json_str):
            print(json_str['status_message']+",已檢測(cè)賬號(hào)"+str(sl)+"個(gè)")
            print("等待3分鐘繼續(xù)執(zhí)行")
            time.sleep(180)
            print("繼續(xù)執(zhí)行")
        else:
            print(json_str)
            print(sbdy)
            yn = input("是否重試,繼續(xù)執(zhí)行?[y/n]")
            if (yn == "n"):
                file.close()
                exit()

需要手動(dòng)去抖音創(chuàng)作者平臺(tái)獲取cookie,注意,只是封了頭像的用戶也會(huì)獲取的,因?yàn)樵砭褪桥袛囝^像地址
我是新手,學(xué)Python寫的,能用就行:loveliness:

標(biāo)簽:清遠(yuǎn) 泉州 長(zhǎng)春 岳陽 洛陽 怒江 安慶 吉林

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼》,本文關(guān)鍵詞  Python,獲取,抖音,關(guān)注,列表,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章