Questions tagged [jumblr]

A pleasant and complete Java wrapper for the Tumblr V2 API.

Jumblr is a pleasant and complete Java wrapper for the Tumblr V2 API.

Usage example:

// Create a new client
JumblrClient client = new JumblrClient("consumer_key", "consumer_secret");
client.setToken("oauth_token", "oauth_token_secret");

// Write the user's name
User user = client.user();
System.out.println(user.getName());

// And list their blogs
for (Blog blog : user.getBlogs()) {
    System.out.println("\t" + blog.getTitle());
}

// Like the most recent "lol" tag
client.tagged("lol").get(0).like();
11 questions
4
votes
2 answers

Jumblr Implementation android

What I have I have a photo that needs to posted to Social API like FB,TWITTER,TUMBLR,FLICKR What I wanted I wanted to post my photo to Tumblr What I tried I came across Jumblr Client which is an official client for Tumblr My problem The document…
karthik kolanji
  • 2,044
  • 5
  • 20
  • 56
4
votes
2 answers

Jumblr API gives bad request while posting image to Tumblr

What I have I have an image File object trying to post to Tumblr using Jumblr API My problem When I try to post the image I get com.tumblr.jumblr.exceptions.JumblrException: Bad Request Response code :400 My code client = new…
karthik kolanji
  • 2,044
  • 5
  • 20
  • 56
1
vote
1 answer

Tumblr API for java (Jumblr), How to use the tagged and get an nsfw result

It looks like that if you use the tagged from jumblr all the nsfw won't be included in the results. TumblrBot bot = new TumblrBot(); JumblrClient jClient = bot.getjClient(); Mapoptions = new HashMap<>(); …
doppelgunner
  • 707
  • 6
  • 10
1
vote
1 answer

Get "is_nsfw" flag from jumblr client for a tumblr blog

I feel like I'm missing something obvious, but I cannot seem to figure it out. I need to figure out from a given URL to a tumblr blogpost, if the blog this was posted on "is nsfw". The API console suggests that information can be found via Blog:…
Pinkie Pie
  • 688
  • 7
  • 15
1
vote
1 answer

Getting html of tumblr post using jumblr

I am developing my first Android application using the "jumblr" library to get the last post of a blog and then do some stuff. The library is really easy to use. I create a jumblr client and insert keys, tokens and all the commands I tried to run…
Gi0ve
  • 31
  • 6
0
votes
1 answer

How to get User's Tumblr Dashboard using Tumblr API?

I am using Jumblr(Tumblr API for Java) in my app to get all the dashboard posts from Tumblr. But I get only 20 posts in return. I want to increase the limit. I have looked into the Jumblr documentation Kindly help me with this. My code is…
Waheed Abbas
  • 187
  • 1
  • 4
  • 18
0
votes
1 answer

Android Tumblr login issue “JumblrException android

What I have I have a photo where I need to post it to Tumblr What I did I authorised the user and got token,secretToken My problem The token,secretToken that I received is different from the Tumber Explore API , so I get…
karthik kolanji
  • 2,044
  • 5
  • 20
  • 56
0
votes
0 answers

Needed updated Tumblr api implementation for android

I am working with some social media API . I am successful in working with Twitter & Facebook I also wanted to work on Tumblr API for posting directly through my android app. I googled and found samples which are very much out dated and some doesn't…
karthik kolanji
  • 2,044
  • 5
  • 20
  • 56
0
votes
0 answers

Fetching Tumblr posts using tag name is ot working

Hi i tried java code to fetch the Tumblr posts using tag name. List posts = client.tagged(tagName, options); Using this I am able to fetch the posts if i am passing some regular tags but if i pass my own tag "#manindar" (I have posted using…
Manindar
  • 999
  • 2
  • 14
  • 30
0
votes
1 answer

Get the URL of an image using jumblr

I´m struggeling a bit trying to get the URL of a PhotoPost using jumblr. I tried casting a post to a PhotoPost, but the detail says that there is no link ( i guess that is what i´m looking for) All i want is the link to the jpg. List posts…
Charles
  • 17
  • 5
0
votes
2 answers

Tumblr photo posting by using jumblr

I am developing simple application to post text and a photo via tumblr by using jumblr. Text posting is working perfectly. But image posting as file working but image posting by url is not working. My code client = new…
selva_pollachi
  • 4,147
  • 4
  • 29
  • 42