Uploading multiple images on twitter using Ruby on Rails Twitter Gem

Nikunj Jain

What should be the format for the parameter: media , in the call below, for updating with multiple images.

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

For a single image, File.new(filepath) works fine..

sferik

To attach multiple images to a tweet, you first need to upload the images using the upload method:

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)

This will return media IDs, which you can pass into the media_ids parameter (as a comma-separated string) of the update method.

twitter_client.update("Tweet text", :media_ids => media_ids.join(','))

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Instantiate multiple twitter accounts with Ruby on Rails twitter gem

From Dev

Ruby on rails Twitter gem, paging results

From Dev

Twitter API - Ruby Twitter Gem

From Dev

Twitter Gem for Ruby on Rails not working. What am I missing?

From Dev

How to tweet multiple images using twitter API?

From Dev

How to share a post in twitter using ruby on rails?

From Dev

How to perform users search using twitter ruby gem

From Dev

Can I cache a result using the Twitter gem? (Rails 4)

From Dev

Can I cache a result using the Twitter gem? (Rails 4)

From Dev

Trending Topics Using Twitter Gem

From Dev

Unable to fabricate Twitter::Tweet from twitter gem using Fabrication gem

From Dev

Unable to fabricate Twitter::Tweet from twitter gem using Fabrication gem

From Dev

Twitter and Recent Tweets Ruby on Rails

From Dev

Twitter and Recent Tweets Ruby on Rails

From Dev

Twitter Ruby Gem Failing To Update when Reply

From Dev

How to setup a model twitter style using ruby on rails

From Dev

How to setup a model twitter style using ruby on rails

From Dev

Update twitter-bootstrap-rails gem

From Dev

Twitter Gem for Rails wont bring back Tweets

From Dev

Rails: Twitter Omniauth gem 401 Unauthorized Error

From Dev

sharing images on twitter using php

From Dev

Uploading Video on twitter using HTTP API

From Dev

Uploading Video on twitter using HTTP API

From Dev

How to reply a tweet using the Twitter gem?

From Dev

How to reply a tweet using the Twitter gem?

From Dev

How to get the number of unread tweets of a user using twitter gem in rails app

From Dev

Using gem 'twitter-bootstrap-rails' , how to get scss extension for stylesheets?

From Dev

Uploading Multiple Images using CarrierWave

From Dev

Python tweet multiple images Twitter API

Related Related

  1. 1

    Instantiate multiple twitter accounts with Ruby on Rails twitter gem

  2. 2

    Ruby on rails Twitter gem, paging results

  3. 3

    Twitter API - Ruby Twitter Gem

  4. 4

    Twitter Gem for Ruby on Rails not working. What am I missing?

  5. 5

    How to tweet multiple images using twitter API?

  6. 6

    How to share a post in twitter using ruby on rails?

  7. 7

    How to perform users search using twitter ruby gem

  8. 8

    Can I cache a result using the Twitter gem? (Rails 4)

  9. 9

    Can I cache a result using the Twitter gem? (Rails 4)

  10. 10

    Trending Topics Using Twitter Gem

  11. 11

    Unable to fabricate Twitter::Tweet from twitter gem using Fabrication gem

  12. 12

    Unable to fabricate Twitter::Tweet from twitter gem using Fabrication gem

  13. 13

    Twitter and Recent Tweets Ruby on Rails

  14. 14

    Twitter and Recent Tweets Ruby on Rails

  15. 15

    Twitter Ruby Gem Failing To Update when Reply

  16. 16

    How to setup a model twitter style using ruby on rails

  17. 17

    How to setup a model twitter style using ruby on rails

  18. 18

    Update twitter-bootstrap-rails gem

  19. 19

    Twitter Gem for Rails wont bring back Tweets

  20. 20

    Rails: Twitter Omniauth gem 401 Unauthorized Error

  21. 21

    sharing images on twitter using php

  22. 22

    Uploading Video on twitter using HTTP API

  23. 23

    Uploading Video on twitter using HTTP API

  24. 24

    How to reply a tweet using the Twitter gem?

  25. 25

    How to reply a tweet using the Twitter gem?

  26. 26

    How to get the number of unread tweets of a user using twitter gem in rails app

  27. 27

    Using gem 'twitter-bootstrap-rails' , how to get scss extension for stylesheets?

  28. 28

    Uploading Multiple Images using CarrierWave

  29. 29

    Python tweet multiple images Twitter API

HotTag

Archive