From 335845d92e1752e3cd13b173cc15bd6a0d9ff265 Mon Sep 17 00:00:00 2001 From: John Davi Date: Wed, 17 May 2017 09:30:01 -0700 Subject: [PATCH] use https for API calls --- diffbot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diffbot.js b/diffbot.js index 6c42de0..b7d067c 100755 --- a/diffbot.js +++ b/diffbot.js @@ -10,7 +10,7 @@ Parameters: @token: Your Diffbot API token **/ Diffbot = function (token) { - var apiUri = "http://api.diffbot.com/v3/"; // Base url for all requests + var apiUri = "https://api.diffbot.com/v3/"; // Base url for all requests // Utility to wrap private helper functions var utility = {