我在我的应用程序中使用Jumblr(Java的Tumblr API)从Tumblr获取所有仪表板帖子。但是我只得到20个职位。我想增加限制。我调查了Jumblr documentation 请帮助我。
我的代码如下:
JumblrClient client = new JumblrClient(consumer_key, consumer_secret);
client.setToken(OAuthToken, OAuthSecretToken);
// Write the user's name
List<Post> posts = client.userDashboard();
System.out.print("\t"+posts.toString());
for (int i = 0; i<posts.size();i++) {
System.out.println("\t" + posts.get(i).getBlogName());
System.out.println("\t" + posts.get(i).getType());
System.out.println("\t" + posts.get(i).getPostUrl());
}
答案 0 :(得分:0)
我在Jumblr文档中找到了解决问题的方法。我必须将options
参数传递给userDashboard()
。
Map<String, Integer> options = new HashMap<String, Integer>();
options.put("limit", 50);
List<Post> posts = client.userDashboard(options);