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


it looks if use tagged jumblr nsfw won't included in results.

    tumblrbot bot = new tumblrbot();     jumblrclient jclient = bot.getjclient();     map<string, object>options = new hashmap<>();     options.put("limit", 20);     options.put("offset", 0);     list<post> posts = jclient.tagged(tag, options);     (int = 0; < posts.size(); i++) {         post post = posts.get(i);         system.out.println((i + 1) + " - post: " + post.getblogname());         system.out.println("\tnotes: " + post.getnotecount());     } 

are there can put in options pull nsfw tagged results?


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -