Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
节日快乐!
使用 Twitter gem,我在查找一批 id时偶尔会遇到此错误。有没有办法知道哪些 id 没有找到,哪些是?
当您传递的所有 id 都未找到或您仅传递一个 id 而未找到时,就会发生这种情况。如果您传递的至少一个 id 可用,那么您将返回一个包含该值的列表,而不是任何缺失的。
也许您会收到此消息,因为 twitter 无法返回私人用户的 id,所以这可能会有所帮助: 在询问 id 之前,请先放...
a_user = Twitter.user(screen_name) if a_user.protected != true { ... }