从维基百科中提取链接图像

发布于 2024-09-07 13:29:44 字数 88 浏览 1 评论 0原文

我有一个 html 页面,我在文本框中放入了一个动物物种。 所以我会从维基百科中提取它的图像并加载到“

我该怎么做?”

中。谢谢。

I have an html page where I put in a text box an animal species.
So I would extract from wikipedia an image of it and load in a

How I can do it?

Thanks.

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

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

发布评论

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

评论(1

橘虞初梦 2024-09-14 13:29:44

维基百科有一个 API,您可以在这里看到: http://en.wikipedia.org/w /api.php

文档:http://www.mediawiki.org/wiki/API< /a>

但是,由于它们似乎不支持 JSONP 格式,因此您需要在服务器端进行 API 调用。您可以使用 cURL 来完成此操作(几乎所有您想要使用的语言都有包装器)。

然后,您需要发送一个调用,例如

curl http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Jaguar&format=xml

Wikipedia has an API, which you can see here: http://en.wikipedia.org/w/api.php

Documentation: http://www.mediawiki.org/wiki/API

However, since they don't seem to have support for the JSONP format, so you'll need to do the API calls server side. You can do this using cURL (there are wrappers in pretty much every language you would want to use).

Then you would want to send off a call to something like

curl http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Jaguar&format=xml

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