|
|
(8 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=%5B%5BModification%20date%3A%3A%7C%5D%5D%7C%3FModification%20date%7Csort%3DModification%20date%7Corder%3Ddesc%26format%3Djsonfm";
| |
|
| |
| /**
| |
| * Send the request to get the images
| |
| */
| |
| fetch(apiEndpoint + "?" + params + "&origin=*")
| |
| .then(function(response){return response.json();})
| |
| .then(function(response) {
| |
| var allimages = response.query.allimages; // Process the output to get the image names
| |
| Object.keys(allimages).forEach(function(key) {
| |
| console.log(allimages[key].name);
| |
| });
| |
| });
| |