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 want to extract the meta-tags from an url, especially the title and the description but i don't know how to do this. I tried with http://nodejs.org/docs/v0.4.2/api/http.html#http.request but i get errors like '411'.

share|improve this question

1 Answer

up vote 4 down vote accepted

Node only parses HTTP, not HTML or other content types. Thankfully, there is a full DOM implementation for node here:

https://github.com/tmpvar/jsdom

Load up your HTML content there, and that'll get you pretty close to your PHP example.

share|improve this answer
Oh, thanks master. It works! – Daniel Flores Mar 11 '11 at 2:15

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.