but 1.9.2 does not. I guess I was wrong in this commit:
ca8c13b4f9e32747. Thanks for reporting the issue, we'll get on it.
On Feb 11, 2:00 pm, Michel Pigassou <
dag...@gmail.com> wrote:
> Hi.
>
> In this issue (
https://github.com/jnunemaker/httparty/issues/issue/67/#comment_764089) I
> asked if I was doing my stuff correctly but it was not the good place. So
> here am I.
>
> My script is very simple:
>
> class Foursquare
> include HTTParty
>
> CLIENT_ID = 'XXX'
> CLIENT_SECRET = 'YYY'
>
> base_uri '
http://api.foursquare.com'
>
> def initialize
> @auth = {:client_id => CLIENT_ID, :client_secret => CLIENT_SECRET}
> end
>
> def get(url, options)
> options[:query].merge! @auth
> super url, options
> end
>
> end
>
> response = Foursquare.get '/v2/venues/search', :query => {:ll => lat_long }
>
> It gives the following error: "OpenSSL::SSL::SSLError (SSL_connect
> returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify
> failed):"
>
> According to the plugin's author