5

参数的格式应该是什么:media,在下面的调用中,用于更新多个图像。

def twitter_status_update_with_media (twitter_client, text, media, opts)
    twitter_client.update_with_media(self.text, media, opts)
end

对于单个图像,File.new(filepath)工作正常..

4

1 回答 1

5

要将多张图片附加到一条推文中,您首先需要使用以下upload方法上传图片:

media_ids = %w(image1.png image2.png image3.png image4.png).map do |filename|
  Thread.new do
    twitter_client.upload(File.new(filename))
  end
end.map(&:value)

这将返回媒体 ID,您可以将其传递给方法的media_ids参数(作为逗号分隔的字符串)update

twitter_client.update("Tweet text", :media_ids => media_ids.join(','))
于 2014-10-07T15:00:39.330 回答