I\'m having trouble accessing the Shopify API using the shopify_api gem.
Here\'s what happens:
>> require \"shopify_api\" #=> false
>>
Most likely, your client is trying to connect using TLS 1.2
, one of the more recent SSL/TLS
protocols used in HTTPS
. Our load balancing hardware has a known problem with TLS 1.2
, although we weren't aware of it until I independently stumbled upon this bug myself.
I've made the rest of the Operations team aware of this, and I expect we'll be fixing this as soon as possible. Until then, you can use
http.ssl_version = :TLSv1
to force Ruby
to use TLS 1.0
instead.