khelll
khelll

Reputation: 24010

Facebook like link data extractor

I'm seeking a lib that takes a URL and returns back useful information like:

Anything around?

Upvotes: 0

Views: 2035

Answers (4)

Anand Roshan
Anand Roshan

Reputation: 355

Yes. You can send ajax request to a php file which gets contents of the url using file_get_contents() function and returns it to ajax. Then we can extract whatever we want from this data response. For explanation, live demo and script download follow herehttp://www.voidtricks.com/extracting-url-data-like-facebook/

Upvotes: 0

Artur Bodera
Artur Bodera

Reputation: 1682

This one made my day: http://www.embedify.me/

Upvotes: 0

confucius
confucius

Reputation: 13327

Embed has a nice api for exactly this purpose. link

Upvotes: 3

C Abernathy
C Abernathy

Reputation: 5523

Try out the REST API links.preview method - https://developers.facebook.com/docs/reference/rest/links.preview/

You can also test out a few URLs to see if this is what you are looking for.

Upvotes: 1

Related Questions