我正在尝试使用 API 从 API 中获取 Twitter 收藏夹的基本列表Ruby
,但我一直在纠结这个错误。
baseurl = "https://api.twitter.com"
path = "/1.1/favorites/list.json"
query = URI.encode_www_form(
"screen_name" => "twitterapi",
"count" => 10)
address = URI("#{baseurl}#{path}#{query}")
undefined method encode_www_form for URI:Module (NoMethodError)
每当我运行它时,我总是会出错。