I'am trying to retrieve some data from Klipfolio and put it in a Google Spreadsheet. I'am using Google Apps Script to accomplish this, but I get this error:
Errorcode: 401. {"meta:{"success":false,"status":401,"error_code":"auth_not_provided","error_desc":"This operation requires authentication"}}
this is my code:
function output() {
var url = "https://app.klipfolio.com/api/1.0/klips/db88d343e7eeef916f9541d73f0df58c/schema/";
var response = UrlFetchApp.fetch(url);
var json = response.getContentText();
var data = JSON.parse(json);
return data;
}
I hope you can help me...