When testing the datasift ruby gem locally be sure to turn SSL off

Here's how to go about not getting caught out with this

I am getting to play with the awesome DataSift service as part of a project I am working on in Rumble and I was coming across some weird issues when testing locally, the consume would start but never actually get anywhere, it would create the connection but not fail or return anything, it would just sit there.

The fix that worked for me isn’t something I would recommend in production, but for local testing I just turned off the need to use SSL for the user object.

So when I create my user like this;

@user  = DataSift::User.new("#{username}", "#{api_key}")

I then call the following;

@user.enableSSL(false)

Now when I do something like;

@consumer = @user.getConsumer(DataSift::StreamConsumer::TYPE_HTTP, 'my_stream_hash')
@consumer.consume(true) do
    ...
end

Everything works as expected :-)


Recent posts View all

Web Dev

Updating payment method email addresses in Stripe

You can't update the email address associated with a payment method in Stripe via their dashboard, you need to use the Stripe CLI

Ruby

Irreversible Rails Migrations

What are irreversible migrations and how might we use them to our advantage?