I'm trying to setup Twitter notifications and am having some issues.
When starting god, I get this: "INFO: failed to send twitter update:
uninitialized constant Twitter::OAuth". What am I missing? Is this
error indicative of an erroneous access_token and/or access_secret?
I'm pretty sure both are right, but I'm not sure what the source of
this problem is.
My current config file section for Twitter looks like this:
God.contact(:twitter) do |c|
c.name = 'ian-twtr'
c.consumer_token = 'gOhjax6s0L3mLeaTtBWPw' # default for god
c.consumer_secret = 'yz4gpAVXJHKxvsGK85tEyzQJ7o2FEy27H1KEWL75jfA' #
default for god
c.access_token = 'xxxxxxx'
c.access_secret = 'xxxxxxx'
end
Thanks