From 83e0d3e5a35c33a1a3fea111733bf9ce53d19e8b Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 29 Dec 2014 14:34:33 +0200 Subject: [PATCH] http -> https Today Pipedrive had some issues with HTTP API requests. Also Pipedrive suggests using HTTPS instead of HTTP --- lib/pipedrive/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipedrive/base.rb b/lib/pipedrive/base.rb index 9a0adb0..7879d30 100644 --- a/lib/pipedrive/base.rb +++ b/lib/pipedrive/base.rb @@ -16,7 +16,7 @@ class Base < OpenStruct include HTTParty - base_uri 'api.pipedrive.com/v1' + base_uri 'https://api.pipedrive.com/v1' headers HEADERS format :json