sudoguy / tiktokpy

Tool for automated TikTok interactions
MIT License
731 stars 151 forks source link

Cannot Scrape Username #241

Open robert-hayden opened 2 years ago

robert-hayden commented 2 years ago

Already install and follow guide.

for item in user_feed_items:
  # 🎧 get music title, cover, link, author name..
  print("Music title: ", item.music.title)
  # #️⃣ print all tag's title of video
  print([tag.title for tag in item.challenges])
  # 📈 check all video stats
  print("Comments: ", item.stats.comments)
  print("Plays: ", item.stats.plays)
  print("Shares: ", item.stats.shares)
  print("Likes: ", item.stats.likes)

but gettin' error: image

can u give advice sir? thank you.