I’ve searched the forum and wiki and can’t find anything that indicates whether a fully-fledged Tumblr plugin exists - can anyone tell me if there is one?
Basically I want to import content via the Tumblr API, parse it, and output it via EE tags somehow (also in the RSS/Atom templates as well). I might optionally want to import it into the EE database, I guess, but that’s not so important.
I’ve never even heard of Tumblr - which means I haven’t seen an add-on to pull any information for it. I do sometimes find out about web services through new add-ons, which is kind of fun.
How does the API work? Can you post an example, maybe in psuedo-code?
I too don’t have a clue what it is. That doesn’t mean much, but even after reading about it, it just seemed like a moblogger tool, which EE has in the personal/commercial license.
How does the API work? Can you post an example, maybe in psuedo-code?
I too don’t have a clue what it is. That doesn’t mean much, but even after reading about it, it just seemed like a moblogger tool, which EE has in the personal/commercial license.
Tumblr is a tumblelog provider - yes, you could do it with other sites or through EE itself, but Tumblr has some clever ways of extracting certain things (e.g. images, video, quotes) from sites you bookmark, and there’s a Firefox extension to allow you to quickly add stuff while you’re surfing.
The API is pretty simple - it uses HTTP/cURL and returns XML or JSON. Could I use something like Magpie or a generic XML parser plugin?
Oh, so it’s like a heavy-duty feed-as-a-web-service? Are all you’re looking to do is consume and print the data?
EE could do this, I don’t think without a problem, as either a plugin or a module. Of course, I think you would need to have cURL (do you have to send request data like in a POST?) or fopen, or even the xml handlers in PHP 5.
Honestly, you could setup a template to parse PHP on output and get it working, and then turn it into a plugin or module from there.
I created a stand-alone class that did it in CodeIgniter as part of a Facebook app, so it’s pretty easy to do. I’ve made a start on a new EE module to consume the API now anyway, as there are a few specific things I need from a Tumblr feed.
Hi, there. New member, resurrecting this thread from March
One of my clients has a complex site built in Expression Engine that contains several blogs. EE’s a great tool, but right now posting quick newsbrief-style items with links is far more complex for site contributors than it needs to be.
I’ve integrated Tumblr with Wordpress blogs, and I know it can be a good third-part posting tool for short items.
Has anyone actually integrated Tumblr into an EE site yet? If so, got a link so I can see how it works?
WHat you can do is feed your tumblr posts into Twitter, and there is an EE Twitter plugin. That’s how I’m making it work, for now.
Tumblr is a great companion to a standalone blog and the social aspects are fantastic, it would be great if someone came up with plugin. I am just not that smart.
Has anyone actually integrated Tumblr into an EE site yet?
I have… kind of.
My site has a Tumblr-powered short-links blog, but the integration is probably not what you want; I have a cron job that pulls down the latest posts from the Tumblr API and inserts them into the EE weblog database. So it’s not really ‘integrated’ in any real sense of the word.
Tumblr has some very robust tools for handling submissions—it seems redundant to reinvent these with EE. For those of us that need to manage and manipulate entries, being able to use Tumblr to collect, organize and submit content to EE would be very handy!
Has anyone else made any progress in integrating Tumblr and EE?
My solution doesn’t really do anything EE-specific. A standalone PHP file runs on an hourly cron job and pulls down the Tumblr RSS feed with cURL, then parses the XML and inserts new items into the exp_weblog_titles and _data tables. It’s completely separate to the EE install (in fact it runs on a different domain).