c# - Search for RSS Feeds on Google -


i hope not chasing red herring here. have seen websites able search rss feeds typing in sort of term "technology news" , return number of different feeds can chose from. searching own curated database fine , dandy, there 1 looks uses google search them. http://ctrlq.org/rss/

does know how done , point me in right direction learn how done bugging life out of me? have done lot of searching seem point depreciated google feed api no longer works or using google alerts create rss feed not wanting do.

ideally in c# can deal results , save relevant selected option in database.

it doesn't need google done in, if there other options available great :)

cheers.

i kinda intrigue question , i've find out. first of went site http://ctrlq.org/rss/ , checked done after click on search button:

function findfeeds() {             var q = $.trim($('#feedquery').val());       if(q == "") {           resetfeeds();           return false;       }        $('#pleasewait').show();           google.feeds.findfeeds(q, function(result) {       if (!result.error) {         var html = '';         (var = 0; < result.entries.length; i++) {           var entry = result.entries[i];           feedlist[i] = entry.url;           var count = i+1;           html += '<div id="feed-' + + '">';           html += ' <h3><img src="//s2.googleusercontent.com/s2/favicons?domain=' + entry.link + '"/> <a target="_blank" href="' + entry.link + '">' + removehtmltags(entry.title) + '</a></h3>';           html += ' <p class="snippet">' + removehtmltags(entry.contentsnippet) + '</p>';           html += ' <p class="feedurl">';           html += '<a href="' + entry.url + '" target="_blank">rss feed</a> &sdot; ';           html += ' <span class="showhide" rel="' + + '">preview feed</span></p>';           html += ' <div id="feedcontent-' + + '"></div>';           html += '</div>';         }          $("#results").fadeout('slow', function() {             $('html, body').animate({scrolltop:0}, 'slow');             $("#results").empty();             $("#results").append(html);             $("#results").show();         });             }             $('#pleasewait').hide();        });       return false;     }   

this function called after click. noticed uses named 'google.feeds.findfeeds' bit of searching , voilĂ : https://developers.google.com/feed/v1/devguide#optional. there google api provides functionality searching , browsing public rss feeds :) site provides examples of use can read more there. hope covers of doubts ;)


Comments

Popular posts from this blog

php - Passing multiple values in a url using checkbox -

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -