Widget:APITest

From Buddha-Nature

Revision as of 16:22, 16 December 2022 by JeremiP (talk | contribs) ((by SublimeText.Mediawiker))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<script type="text/javascript"> var apiEndpoint = "https://en.wikipedia.org/w/api.php"; var params = "action=query&list=random&rnlimit=3&format=json";

/**

* The function to wrap the result
*/

var callback = function (response) {

   var pages = response.query.random; // Process the output to get the titles
   Object.keys(pages).forEach(function(key) {
       console.log(pages[key].title);
   });

};

var scriptTag = document.createElement("script"); // Dynamically create a "script" tag scriptTag.src = apiEndpoint + "?" + params + "&callback=callback"; // Point to the query string

document.body.appendChild(scriptTag); // Add the script tag to the document </script>