使用标记名称从Tumblr获取所有帖子的java代码

时间:2015-07-08 07:46:09

标签: java tags fetch tumblr

我试图使用标签从Tumblr获取帖子。

http://api.tumblr.com/v2/tagged?tag=hadoop&api_key=*****

我可以编写HTTP客户端,并可以相应地获取json和parse。但我想知道任何支持tumblr java api的信息来访问它。

我尝试使用com.tumblr.jumblr.JumblrClient,但我没有找到任何支持此要求的方法。任何人都可以在此建议我。

2 个答案:

答案 0 :(得分:2)

如果我查看github中的JumblrClient.java,我可以看到一个方法:

/**
 * Tagged posts
 * @param tag the tag to search
 * @param options the options for the call (or null)
 * @return a list of posts
 */
public List<Post> tagged(String tag, Map<String, ?> options) {
    if (options == null) {
        options = Collections.emptyMap();
    }
    Map<String, Object> soptions = JumblrClient.safeOptionMap(options);
    soptions.put("api_key", apiKey);
    soptions.put("tag", tag);
    return requestBuilder.get("/tagged", soptions).getTaggedPosts();
}

https://github.com/tumblr/jumblr/blob/master/src/main/java/com/tumblr/jumblr/JumblrClient.java

https://github.com/tumblr/jumblr#tagged

根据文档,它应该是您所需要的。它实际上构建了您在问题中提到的相同请求。

编辑: 根据Tumblr API文档,不可能要求超过20个帖子。

  

limit - 要返回的结果数:1-20,包括

https://www.tumblr.com/docs/en/api/v2#tagged-method

答案 1 :(得分:1)

我找到了它..

public List<Post> fetchPostsByTag(JumblrClient client, String tagName, long timestamp) {
    if (client == null || tagName == null || tagName.isEmpty()) {
        return null;
    }
    Map<String, String> options = new HashMap<String, String>();
    if (timestamp != 0) {
        options.put("before", timestamp + "");
    }
    List<Post> posts = client.tagged(tagName, options);
    return posts;
}

此代码对我有用..现在我使用标签获得了超过20个帖子。

感谢缰绳的支持。