tumblr

How to Post image or Text in Tumblr Android [closed]

心不动则不痛 提交于 2019-11-30 00:03:29
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 5 years ago . I am Working on Tumblr integration in Android but not able to login Downloded the SDK from following Url:- http://www.tumblr.com/tagged/android-sdk now i need to login and post image or text in Tumblr. 回答1: Download Tumblr Example Set CONSUMER_KEY and CONSUMER_SECRET and Get Started! About posting

Integrating tumblr blog with website

吃可爱长大的小学妹 提交于 2019-11-29 22:41:11
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? You can use PHPTumblr , an API wrapper written in PHP which makes retrieving posts a breeze. kweerious There's a javascript include that does this now,

How do I make my banner in tumblr link to another site?

给你一囗甜甜゛ 提交于 2019-11-29 18:21:27
I'm trying to make the banner in my tumblr blog link to another site. I can't figure out how to do it. The following is the code I found in the custom html tab but I can't seem to make my banner clickable. Where exactly should I add the website address for the link? Any help will be appreciated. <div id="page" class="{block:IfLeftSidebar}left-sidebar{/block:IfLeftSidebar}{block:IfNotLeftSidebar}right-sidebar{/block:IfNotLeftSidebar}"> {block:IfBannerImage} <div class="banner"> <a href="/"title="{Title}"><img id="banner" src="{image:Banner}" alt="banner"/></a> </div> {block:IfBannerImage}

Tumblr Photo/Photoset popup

大兔子大兔子 提交于 2019-11-29 18:01:25
The theme I use lets photoset images pop up to the grey gallery slide show. If I post only a single photo nothing happens, even when I insert a clickthrough URL. I'd like to have the grey slide show gallery for all images. On the dashboard it works, but not in the theme. I think there's some code missing, but I don't know it. Could somebody have a look on it, please? I use this theme http://mindspalace.tumblr.com There's no official way for doing this, but you could 'piggyback' tumblr's Lightbox function Tumblr.Lightbox.init() since it's already loaded on your blog for photosets. It accepts an

Can I have a <pre> Tag inside a <p> tag in Tumblr?

痴心易碎 提交于 2019-11-29 17:02:56
问题 today I played around a little bit with Tumblr. I tried to add a preformatted text into a description paragraph block like so: {block:Description} <p id="description">{Description}</p> {/block:Description} However, the <pre> element gets rendered just after the <p> element and not within it which was my intention. Am I doing something wrong here or is it a bug? 回答1: You cannot nest block-level elements, such as <pre>, inside <p> in HTML. So Tumblr is behaving correctly. You should close your

How to display a link to my latest Tumblr post using Javascript?

左心房为你撑大大i 提交于 2019-11-29 16:29:33
I am looking for some help and would be VERY grateful for it. I would like to use Javascript to display a link to my latest Tumblr post. For example, it would be like: <a href="http://brianjsmith.tumblr.com/post/4486283258/welcome-to-my-tumblr">Read Post</a> As you can see in the above code, the link is to my latest post. However, the latest post is (of course) going to change.... I can't seem to find anything online (I've been searching Google for a few hours) and I have been trying to create my own code with Tumblr's API settings with no luck. I know I asked a question similar to this for

How to query multiple tags in Tumblr's read api?

折月煮酒 提交于 2019-11-29 16:29:21
问题 I'm trying to include Tumblr feeds on a webpage roughly as follows $.ajax({ url: 'http://mypage.tumblr.com/api/read/json?tagged=interesting+tag', type: 'GET', dataType: 'jsonp', success: renderStuff, error: function () { alert('D\'oh'!) } }); Now, this works fine: I get all entries with the tag 'interesting tag'. My question is: How do I ask for multiple tags? Changing the query string like this 'http://mypage.tumblr.com/api/read/json?tagged=tag1&tagged=tag2&tagged=tag3' only returns entries

How do I initialise JQuery on Tumblr? [closed]

这一生的挚爱 提交于 2019-11-29 13:06:21
I'm making a Tumblr theme. I need to use JQuery for a few theme functions, but I need to first initialise it in the JS section of the built in theme editor. Because this is on Tumblr, I cannot host a JQuery library on my own server. How can I access this library remotely from another source? If you want to use the power of the jQuery javascript library in your Tumblr theme and you don’t want to host the jQuery library on your own server then you should consider the Google AJAX Libraries API. The AJAX Libraries API is a content distribution network and loading architecture for the most popular,

Tumblr “like-heart-button” script on homepage [closed]

瘦欲@ 提交于 2019-11-29 08:59:54
How to make a 'like' button for each post without going on permalink page? I mean, even in the homepage, which script can I use to have something like the heart on this page? (mouseover the photos, there's a heart to like the post) From the page, they're using the javascript: $('a.like-link').click(function() { var post = $(this).closest('.post'); var id = post.attr('id'); var oath = post.attr('rel').slice(-8); var like = 'http://www.tumblr.com/like/'+oath+'?id='+id; $('#likeit').attr('src', like); } So post is just the HTML element of the post, they then simply get the id of that post and the

heart (like) button on tumblr homepage

眉间皱痕 提交于 2019-11-29 07:48:51
Looking at the various posts here and on google groups on the subject, I'm trying to use the script from the ciceron theme to reproduce the heart (like) button, but I haven't succeed so far. Below is my code. Did I miss something? Did someone manage to work it out? In the <head> : <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script> <script type="text/javascript"> $('a.like-link').click(function() { var post = $(this).closest('.post'); var id = post.attr('id'); var oauth = post.attr('rel').slice(-8); var like = 'http://www.tumblr.com/like