消费私有Squarespace API /数据

时间:2018-09-14 18:26:46

标签: javascript api squarespace

我有一个受密码保护的Squarespace页面。我正在尝试通过?format = json-pretty功能使用页面的数据。尽管有密码保护,是否有一种方法(使用其API密钥或其他方法)来使用数据?我的基本查询是以下

 fetch('http://squarespacepage.squarespace.com/page?format=json/')
    .then(res => res.json())
    .then(json => {
        console.log(json)
    })
    .catch(err => {
      console.log("err");
        console.log(err);
      });

0 个答案:

没有答案