Skip to content

Instantly share code, notes, and snippets.

@pcon
Last active November 8, 2019 20:28
Show Gist options
  • Select an option

  • Save pcon/94929bdde5cf7ff22e553793b7cb66d7 to your computer and use it in GitHub Desktop.

Select an option

Save pcon/94929bdde5cf7ff22e553793b7cb66d7 to your computer and use it in GitHub Desktop.
require 'restforce'
require 'faye'
Restforce.log = true
Restforce.configure do |config|
config.logger = Logger.new("/tmp/restforce.log")
config.log_leve = :info
end
client = Restforce.new
client.authenticate!
EM.run do
client.subscription '/event/LoginEventStream' do |message|
puts message.inspect
end
end
@pcon

pcon commented Nov 8, 2019

Copy link
Copy Markdown
Author

@samjglover I'm not interested in using any project as I'm targeting adding this to the Open-source project Fluentd. If you have anyone that knows why this isn't working I'd be more than happy to talk with them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment