vote up 0 vote down star

Hi, I would like to integrate my tumblr feed in to my website. It seems that tumblr has an API for this, but I'm not quite sure how to use it. From what I understand, I request the page, and tumblr returns an xml file with the contents of my blog. But how do I then make this xml into meaningful html? Must I parse it with php, turning the relevant tags into headers and so on? I tell myself it cannot be that painful. Anyone have any insights?

flag

50% accept rate
Question specifically mentions php, making it programming related. – Dana the Sane Oct 14 at 18:53

2 Answers

vote up 0 vote down check

You can use PHPTumblr, an API wrapper written in PHP which makes retrieving posts a breeze.

link|flag
Godsent. Now to learn php... – Ying Oct 14 at 19:30
vote up 0 vote down

There are two main ways to do this. First, you can parse the xml, pulling out the content from the the tags you need (a few ways to do this depending on whether you use a SAX or DOM parser). This is the quick and dirty solution.

You can also use an XSLT transformation to convert the xml source directly to the html you want. This is more involved since you have to learn the syntax for xslt templates, which is a bit verbose.

link|flag

Your Answer

Get an OpenID
or

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