嘿伙计们,我可以从原始推文中获取图片,但是从转发中我得到的只是文字,而不是图片。有没有办法得到这个?
var tweet = twt[i] //here I get the twitter posts
console.log(tweet.text) //return the tweet text
console.log(tweet.entities.media[0].media_url) //return tweet image but only if the image is part of the original post
答案 0 :(得分:0)
正如您将从the documentation on retweeting看到的那样,转推的结构与普通推文略有不同。
看起来像:
tweet
|_ retweeted_status
|_ entities
在你的情况下,你会想要使用类似......
的东西 console.log(tweet.retweeted_status.entities.media[0].media_url)