Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a project where if a user submits a url, it should grab the title, images and description from that url and then give an option to change between images. when submitted it should post those values.

share|improve this question
1  
what do you have so far? – Chris McClellan Mar 31 '11 at 22:00
3  
will code for food – amosrivera Mar 31 '11 at 22:03
Come on, that's way too easy. Ok, we know what is should do, but what does it do now? ;) – webarto Mar 31 '11 at 22:16
please give me the code guys or a link to a tutorial or reference. – Vish Apr 1 '11 at 0:38
right now the user types in the url, title, description, image url. I wanted to make it more usable. – Vish Apr 1 '11 at 0:39

2 Answers

up vote 1 down vote accepted

Facebook, Google+ gets image, title, description from two known ways.

1) Most of the well-know websites gives og tags. It contains title, description, image http://ogp.me/

2) meta tags inside head tag of html will also be published by many sites. You can make use of that also.

For more explanation see the following link.

http://webapps.stackexchange.com/questions/6745/how-does-facebook-publisher-select-the-image-title-and-content-from-a-shared

P.S: I have posted this answer, since the above verified answer was not satisfyong my needs.

share|improve this answer

I advise that you make a PHP page that parses the information and returns the data to you Ajax function.So to summarize you'll want to google: "PHP Parsing HTML" and "Ajax PHP Retrieve Data"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.