维基百科 pageid 是什么?如何将其更改为真实的页面网址?

发布于 2024-11-10 01:39:57 字数 422 浏览 0 评论 0原文

我正在研究维基百科 API,

一些演示 api 调用

pageid 是什么?如何将其更改为真实的页面网址?

我的意思是 ,如何将 18630637 更改为 http:// en.wikipedia.org/wiki/Translation

I'm studying the wikipedia API,

some demo api call

What is the pageid? How do I change it into a real page url?

I mean <page pageid="18630637" ns="0" title="Translation" />, how to change 18630637 into http://en.wikipedia.org/wiki/Translation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情仇皆在手 2024-11-17 01:39:57

您可以使用如下 URL:

http://en.wikipedia.org/?curid=18630637< /a>

这是最短的形式,其他形式也是可能的:

http://en.wikipedia.org /wiki?curid=18630637

http://en.wikipedia.org/wiki /Translation?curid=18630637

http://en.wikipedia.org /w/index.php?curid=18630637

请注意,如果您指定 curid,MediaWiki 会忽略页面标题,因此即使

http://en.wikipedia.org/wiki/FooBar?curid=18630637

会引导至同一页面。

You can just use a URL like this:

http://en.wikipedia.org/?curid=18630637

This is the shortest form, others are also possible:

http://en.wikipedia.org/wiki?curid=18630637

http://en.wikipedia.org/wiki/Translation?curid=18630637

http://en.wikipedia.org/w/index.php?curid=18630637

Note that MediaWiki ignores the page title if you specify a curid, so even

http://en.wikipedia.org/wiki/FooBar?curid=18630637

leads to the same page.

注定孤独终老 2024-11-17 01:39:57

pageid 是 MediaWiki 的内部文章 ID。您可以使用操作 API 的 info 属性来获取完整的来自 pageid 的网址:

https://en.wikipedia.org/w/api.php?action=query&prop=info&pageids=18630637&inprop=url

The pageid is the MediaWiki's internal article ID. You can use the action API's info property to get the full URL from pageid:

https://en.wikipedia.org/w/api.php?action=query&prop=info&pageids=18630637&inprop=url

π浅易 2024-11-17 01:39:57

哦,如果您添加“&prop=info&inprop=url”,您还可以在初始 API 调用中获取完整页面 URL:

http://en.wikipedia.org/w/api.php?action=query&generator=search&gsrsearch=meaning&srprop=size%7Cwordcount%7Ctimestamp%7Csnippet&prop=info&inprop=url

Oh, and you can also get the full page URL in your initial API call if you add "&prop=info&inprop=url":

http://en.wikipedia.org/w/api.php?action=query&generator=search&gsrsearch=meaning&srprop=size%7Cwordcount%7Ctimestamp%7Csnippet&prop=info&inprop=url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文