从维基百科中提取链接图像
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
维基百科有一个 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