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'm trying to retrieve the Meta Tags from an external site. Using PHP get_headers/get_all function does not include the Open Graph meta tags I am trying to specifically fetch.

I am trying to use as little bandwidth as possible - therefore I am wondering if there is a way to retrieve the META tags from the header without loading the rest of the webpage?

e.g This url: http://www.ebay.co.uk/itm/170904416689

Has this META in it's header:

<meta property="og:image" content="http://thumbs2.ebaystatic.com/m/mfaJ3onbAJAlQDfRjkBED4g/96.jpg"></meta>
share|improve this question
1  
Well, you could write the HTTP request yourself using a socket and half-parse the HTML until you find a </head> and then a <body>, but that'd be amazingly silly. – Charles Jan 1 at 1:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.