There is no way to do this in Feed API, you'll have to do it client side.

ciao,
Thomas

On Fri, Feb 19, 2016 at 6:13 AM, pankaj chopra <pc06m...@gmail.com> wrote:

> Hi All,
>
> Below is my code syntax for RSS feed in my website
>
>
> <!DOCTYPE html>
> <html>
>   <head>
>     <script type="text/javascript" src="https://www.google.com/jsapi";
> ></script>
>     <script type="text/javascript">
>
>
>     google.load("feeds", "1");
>
>
>     function initialize() {
>       var feed = new google.feeds.Feed("
> http://feeds.bbci.co.uk/news/rss.xml";);
>       feed.load(function(result) {
>         if (!result.error) {
>           var container = document.getElementById("feed");
>           for (var i = 0; i < result.feed.entries.length; i++) {
>             var entry = result.feed.entries[i];
>             var div = document.createElement("div");
>             div.appendChild(document.createTextNode(entry.title));
>             container.appendChild(div);
>           }
>         }
>       });
>     }
>     google.setOnLoadCallback(initialize);
>
>
>     </script>
>   </head>
>   <body>
>     <div id="feed"></div>
>   </body>
> </html>
>
>
> I want to filter my RSS Feed before fetching in URL. What is the way to do
> it?
> Code example will be appreciated. I am in new in this API
>
> --
> --
> You received this message because you are subscribed to the Google
> Groups "Google AJAX APIs" group.
> To post to this group, send email to
> google-ajax-search-api@googlegroups.com
> To unsubscribe from this group, send email to
> google-ajax-search-api+unsubscr...@googlegroups.com
> To view this message on the web, visit
>
> https://groups.google.com/d/msgid/google-ajax-search-api/1cf4f819-cf81-4698-9b93-c8f3bc3354aa%40googlegroups.com
> <https://groups.google.com/d/msgid/google-ajax-search-api/1cf4f819-cf81-4698-9b93-c8f3bc3354aa%40googlegroups.com?utm_medium=email&utm_source=footer>
> For more options, visit this group at
> http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Google AJAX APIs" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-ajax-search-api+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
google-ajax-search-api@googlegroups.com
To unsubscribe from this group, send email to
google-ajax-search-api+unsubscr...@googlegroups.com
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/CAMgRyw2saBphv6Vt7SoUOsVXzQdic92utN4Thq8JNfvUiN-8hA%40mail.gmail.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-ajax-search-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to