维基百科 pageid 是什么?如何将其更改为真实的页面网址?
我正在研究维基百科 API,
pageid 是什么?如何将其更改为真实的页面网址?
我的意思是
,如何将 18630637
更改为 http:// en.wikipedia.org/wiki/Translation
?
I'm studying the wikipedia API,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用如下 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.
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'sinfo
property to get the full URL frompageid
:https://en.wikipedia.org/w/api.php?action=query&prop=info&pageids=18630637&inprop=url
哦,如果您添加“&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