This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Description
According to the spec (https://dev.twitter.com/rest/reference/post/statuses/update), the media_ids parameter of the update() call should take a list of media ID strings as its value.
In current Net::Twitter, if you wish only to attach a single piece of media to a new tweet, then you can set media_ids to that media's value as a string, and it works fine. However, if you try to set media_ids to an ArrayRef of any nonzero length (including one), Net::Twitter seems to interpret this as an attempt to refer to a file on-disk, and therefore usually dies with a no-such-file error.