From 542bfa4f1476b970ecb0c41ed57758e48a6c6698 Mon Sep 17 00:00:00 2001 From: Kevin Fitzgerald Date: Fri, 26 Aug 2016 15:06:56 -0500 Subject: [PATCH] Changed default protocol to HTTPS. * IBM / AlchemyAPI is deprecating HTTP access on November 9, 2016. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 49ce1d8..87138ee 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ var AlchemyAPI = function(api_key, opts) { var settings = { format: "json" ,api_url: "gateway-a.watsonplatform.net" - ,protocol: "http" + ,protocol: "https" }; settings = extend(settings, opts);