Hi to all. I am using local api v3 -
http://local.yahooapis.com/LocalSearchService/V3/localSearch and i have a issue.
If i a have totalResultsAvailable=12000 parameter and max value for start param is
250, how could i fetch all local business from api.
The algorithm i am using is:
first request: i get totalResultsAvailable.
next requests: i send request to yahoo! with start = start(from previous request) + 20 and parse xml.
finish processing when totalResultsReturned != items.Count(returned from xml) - i.e. it is last page with data
How could i get all items?