Naposledy aktivní 1732918193

melanie's Avatar melanie revidoval tento gist 1732918192. Přejít na revizi

1 file changed, 16 insertions

fetch-for-osascript.js(vytvořil soubor)

@@ -0,0 +1,16 @@
1 + /*
2 + Try it from the command line on Mac:
3 + `osascript -l JavaScript fetch-for-osascript.js`
4 + */
5 + function fetch(url) {
6 + const queryURL = $.NSURL.URLWithString(url);
7 + const requestData = $.NSData.dataWithContentsOfURL(queryURL);
8 + const requestString = $.NSString.alloc.initWithDataEncoding(
9 + requestData,
10 + $.NSUTF8StringEncoding,
11 + ).js;
12 + return JSON.parse(requestString);
13 + }
14 +
15 + const json = fetch("https://melaniekat.com/gifs/api")
16 + console.log(JSON.stringify(json))
Novější Starší