Ruby: 如何将选项传递给 twitter gem 的 user_timeline 方法?

Ruby: How to pass options to user_timeline method of twitter gem?

我正在使用 sferik gem 获取推文。

我想将以下额外参数传递给方法 "user_timeline":

计数,include_rts 和 exclude_replies

是否可以将这些作为参数传入?

如果是,我如何将这些额外的参数传递给"user_timeline"方法并根据这些额外的参数得到适当的响应?

感谢帮助!!

查看文档 here。您应该能够像这样传递支持的选项:

user_timeline(your_user, {
 :include_rts => true,
 :exclude_replies => true,
 :count => 42 
})

更新 正如@mudasobwa 在评论中正确指出的那样,如果您使用的是 ruby 1.9+,则可以使用以下更简单的语法:

user_timeline(your_user, include_rts: true, exclude_replies: true, count: 42)