如何像 Facebook 那样从链接中获取元属性(图像、视频、标题......)?

发布于 2024-12-03 19:37:43 字数 427 浏览 0 评论 0原文

我正在尝试为网络应用程序添加一项功能,当用户发布链接时,会以某种方式获取标题图片 URL,以便它可以显示在我的网络应用程序上。

Facebook 已经这样做了;当您共享链接时,它会获取此信息并显示标题、简介、图片等。

我知道它会这样标识相关数据:

 <meta name="title" content="title" />
 <meta name="description" content="description " />
 <link rel="image_src" href="thumbnail_image" />

但是我如何才能真正获取这些字符串呢?

我正在使用 Ruby on Rails 进行编程,因此与此兼容的答案,或者可能使用 javascript,将是最有用的!

I'm trying to add a functionality for a webapp where when users post links, the title picture URL is fetched somehow, so that it can be displayed on my web app.

Facebook does this already; when you share a link it fetches this information and displays the title, a blurb, a picture etc.

I know that it identifies the pertinent data as such:

 <meta name="title" content="title" />
 <meta name="description" content="description " />
 <link rel="image_src" href="thumbnail_image" />

But how could I it actually fetch these strings?

I'm programming in Ruby on Rails, so an answer compatible with that, or using javascript perhaps, would be most useful!

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

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

发布评论

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

评论(3

栖竹 2024-12-10 19:37:43

有一个 gem 封装了 OpenGraph,这就是 Facebook 使用的。好像已经闲置一年左右了。

https://github.com/intridea/opengraph

There's a gem that wraps OpenGraph, which is what Facebook uses. Seems its been idle for a year or so.

https://github.com/intridea/opengraph

我很OK 2024-12-10 19:37:43

这称为链接抓取。您需要使用客户端 js 和服务器端 ruby​​。

流程如下所示:

  1. 您的客户端通过 ajax 调用服务器上的 scraper 函数
  2. Scraper 函数获取 url 并检查相关元数据

It's called link scraping. You'll need to use both client-side js and server-side ruby.

Process looks like this:

  1. Your client calls scraper function on your server via ajax
  2. Scraper function fetches the url and inspects the relevant meta
梦归所梦 2024-12-10 19:37:43

这可能有点晚了,但我建议查看一个名为 nokogiri 的 gem,它可以让您使用 css 选择器或 xpath 从其他网页抓取数据。如果您想了解它的功能,可以查看随附的 Railscast。 http://railscasts.com/episodes/190-screen-scraping-with-nokogiri

This may be a little late but I would suggest looking at a gem called nokogiri, it will let you scrape data from other web pages using css selectors or xpath. If you want to see what it can do, there is an accompanying railscast about it. http://railscasts.com/episodes/190-screen-scraping-with-nokogiri

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