Menu

#2 search method doesn't work

open
nobody
None
5
2006-06-13
2006-06-13
Anonymous
No

hello,

I have written a small program to download photos using
Flickrj. I have first got the photos by searching
according to tags.

PhotosInterface photoInt = flickr.getPhotosInterface();
SearchParameters sp = new SearchParameters();
tags[0] = "weiss";
tags[1] = "hunde";
sp.setTags(tags);
sp.setTagMode("all");
int photocount = 0;
int pageoffset = 0;
for (int pageoffset = 0; pageoffset <
100;pageoffset++)
{
PhotoList pl = photoInt.search(sp,
500, pageoffset);
}

But I can get the results only from the page 0 to the
page 2.From the page 3 I cannot the results any more.

Why?

Discussion


Log in to post a comment.