|
|
(2 intermediate revisions by the same user not shown) |
Line 8: |
Line 8: |
| $.fn.fullpage.moveSectionDown(); | | $.fn.fullpage.moveSectionDown(); |
| }); | | }); |
− |
| |
− |
| |
− |
| |
− |
| |
− | // API Tests
| |
− | var apiEndpoint = "https://commons.tsadra.org/api.php";
| |
− | var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=jsonfm";
| |
− |
| |
− | /**
| |
− | * Send the request to get the images
| |
− | */
| |
− | fetch(apiEndpoint + "?" + params + "&origin=*")
| |
− | .then(function(response){return response.json();})
| |
− | .then(function(response) {
| |
− | var results = response.query.results; // Process the output to get the image names
| |
− | Object.keys(results).forEach(function(key) {
| |
− | console.log(results[key].Bio);
| |
− | });
| |
− | });
| |
− |
| |
− |
| |
− |
| |
− |
| |
− | var apiEndpoint = "https://commons.tsadra.org/api.php";
| |
− | var params = "action=ask&query=[[Dorje,_G.]]|%3FBio&format=jsonfm&origin=*";
| |
− |
| |
− | /**
| |
− | * The function to wrap the result
| |
− | */
| |
− | var callback = function (response) {
| |
− | var bios = response.query; // Process the output to get the titles
| |
− | Object.keys(bios).forEach(function(key) {
| |
− | console.log(bios[key].Bio);
| |
− | });
| |
− | };
| |
− |
| |
− | var scriptTag = document.createElement("script"); // Dynamically create a "script" tag
| |
− | scriptTag.src = apiEndpoint + "?" + params + "&callback=callback&origin=*"; // Point to the query string
| |
− |
| |
− | document.getElementById("ApiTest").append(scriptTag); // Add the script tag to the document
| |