Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Could you tell me how to create such functionality as on facebook. User insert link and web site grab data from link )
http://screencast.com/t/f6LUBKxBz
Thanks, Alex
I'm not sure how Facebook does it, but the content you are seeing is the <title> of the page:
<title>
Welcome to Facebook - Log In, Sign Up or Learn More
, the <meta name="description">:
<meta name="description">
Facebook is a social utility that connects people with friends and others ...
and the image in the <meta property="og:image">-tag:
<meta property="og:image">
https://www.facebook.com/images/fbicon325x325.png
One way of obtaining these is to create a script, a web crawler, that "scans" a page and identifies the tags you are interested in and grab their content.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Link grabber as on facebook
Could you tell me how to create such functionality as on facebook. User insert link and web site grab data from link )
http://screencast.com/t/f6LUBKxBz
Thanks, Alex
I'm not sure how Facebook does it, but the content you are seeing is the
<title>
of the page:, the
<meta name="description">
:and the image in the
<meta property="og:image">
-tag:One way of obtaining these is to create a script, a web crawler, that "scans" a page and identifies the tags you are interested in and grab their content.
is working on a reply...