我正在尝试将 Twitter 用户属性(即“已验证”)中的布尔值分配给一个变量,但我运气不佳。我正在使用 Ruby——这是代码:
profile = Twitter.users({"Oprah" => :verified})
if profile == true
puts "This profile is verfied."
else
puts "This profile is NOT verified."
end
无论 Twitter 用户是否经过验证,它始终默认为 else 语句。我知道我忘了做一些简单的事情。有什么想法吗?