I'm getting started with the API. Here is my "hello world" program:
<html>
<head>
<script type="text/javascript" src="https://jsapi.wikidot.com/js/code/4"></script>
</head>
<body>
<script type="text/javascript">
var data = jsAPI("pages.get_one", {"site": "rtt", "page": "start"}, "r0JF5IqvvWXmr3JRulYGNE0qd4BKeiMN");
document.write(data["html"]);
</script>
</body>
</html>
Put this in a file on my machine, opened it in my browser, get this error: "Error: You must be in the HTTPS protocol to make request the API!"
So in order to develop and test my code I have to upload it to a site where I can refer to it with HTTPS? Does any page that access the code have to operate within HTTPS?
By the way, is this the best place to ask questions about using the API to perform specific tasks against a wiki?