Only just started converting a DIGG RSS feed we use on our site to use
the API, JSON and the API data are just far more simpler and detailed
then the RSS data, but I see one major issue.
With the RSS i could lets call it "GEO CODE" my results
$url = "
http://digg.com/rss_search?search=".
$search."&area=promoted&type=both§ion=all";
$search could be anything like 'Australia' or whatever, and then just
limit number of printed responses or filter the responses on my end.
With the API
There does not seem to be any kind of &search= functionality built
in, which would mean your always required to do searching on your end
through the descriptions and titles hoping to match a term, and since
the API only allows 100 responses, much of the time on our website the
keywords will not be getting a match from those 100 results.
Regardless of where you pulled the stories from, /all, popular,
upcoming etc. Where as the RSS just searches everything inside the
area you specify and returns valid stories that match your keyword.
Is there anyway, or any work being done on providing SEARCH term
functionality for the API the way the RSS feed does?
:(