hi
I have written a simple Rails app to create a search interface similar in look n feel to google. However I noticed some issues with data returned by the API.
1) The date field appears to be incorrect
2) The description field is cropped
In order to get this missing information I had to use the metadata API where I discovered I can only get one record at a time. As a result a page returning 20 records results in 1 API call for the search and 1 for each of the records returned (which I then cache incidentally for speed), a grand total of 21 calls. Not ideal!
So to summarize the changes I would like to see in a future version of this API are
1) Fix the date and description fields
2) Allow more than one metadata record to be retrieved (within reason obviously, say perhaps 20) so that one can batch API calls.
Comments welcome
Cheers
Gordon