문제

I have a function that gets the first section of a random Wikipedia article, but I don't know how to get the actual URL of that article. I've looked around in the WikiMedia API and couldn't find it.

getRandomArticle : function() {
    return $.getJSON("http://en.wikipedia.org/w/api.php?action=query&generator=random&grnnamespace=0&prop=extracts&explaintext&exintro=&format=json&callback=?", function (data) {});
}

Any ideas?

도움이 되었습니까?

해결책

It's not as easy as you might think. The API returns pages with internal ID's, and you have to use the API again to get information on the particular page, such as the URL.

$.getJSON("http://en.wikipedia.org/w/api.php?action=query&generator=random&grnnamespace=0&prop=extracts&explaintext&exintro=&format=json&callback=?", function (data) {
    $.each(data.query.pages, function(k, v) {
        $.getJSON('http://en.wikipedia.org/w/api.php?action=query&prop=info&pageids='+v.pageid+'&inprop=url&format=json&callback=?', function(url) {
            $.each(url.query.pages, function(key, page) {
                console.log(page); // contains the page data
                var url = page.fullurl; // the url to the page
            });
        });
    });
});

FIDDLE

다른 팁

Your question is similar to What is wikipedia pageid? how to change it into real page url?.

The easiest way? Just go to http://en.wikipedia.org/?curid=pageid.

If you are getting query.result.pageid.extract to get text from the article, then you now the pageid.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top