Displaying 1 result from an estimated 1 matches for "response_xml".
Did you mean:
response_html
2008 Mar 14
14
Facebooker MQ now on RubyForge
...default =>
Time.at(0)) # Optional date time to wait until you send
t.column( :last_send_attempt, :datetime )
t.column( :send_attempts, :integer, :default => 0 , :null => false
)
t.column( :facebook_errors, :text, :default => "")
t.column( :response_xml, :text, :default => "")
t.timestamps
end
end
def self.down
drop_table :facebook_messages
end
end
3) Cronjob or some other way to fire off FacebookerMqRunner.work()
Misc:
Look in facebooker_session_override.rb and you will see all the api methods
that...