RSS feed subscription in a semi-automatic way (SharePoint online)

I have a site with a lot of subsites. I want to user to be able to subscribe to RSS feed in a more automatic way.
If possible I would add a button or link to a subsite. When the user clicks this he/she is subscribed to (my pre-defined) set of RSS feeds, at once (that will be about 50 lists and document libraries).
Is this possible?
Thanks, Mike

Check out Waldek's post on the subject here http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
(Edit: By request of the blog author the content should be linked instead of copied in its entirety)

Similar Messages

  • Why SP2013 generate RSS feed subscription link with feeds:// not feed://

    We are using SP2013 enterprise on-premise. Our users are using IE9. On any list or document library, click on top ribbon "List" -> RSS feed, it will goto a page with URL like
    /_layouts/15/listfeed.aspx?List=xxxxxxxxxxxxxxxxxxxxxx
    On the page there is a link "Subscribe this RSS feed". The link is redirecting to feeds://xxxxxxx. On my IE9 it throw a "web page cannot display" error. After some finding I think the protocol should be feed:// not feeds://. Is it a bug
    for SP2013 or MS do it by purpose?

    Hi Mark,
    Did you configure SSL for SharePoint web application(using https URL)?
    It seems that the feed protocol will change to feeds when you enable SSL for SharePoint web application.
    Please make sure that the Outlook 2013(office 2013) is installed in your environment.
    If not, install it and then compare the results.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Rss feed subscription into iTunes

    I am building a site containing my own podcasts. I want my visitors to subscribe to them directly. What do I need to do so that once they click on the link "subscribe to this podcast" iTunes opens and subscribes to the podcast? Is there something that I need to add to the xml code? a java script?
    Thank you?

    Are you talking about a 1-click subscribe for iTunes?
    If so, the TRUE 1-click subscribe is to insert a hyperlink that leads to your feed like: itpc://feeds.feedburner.com/marioajero (substitute the traditional http with itpc which stands for iTunes PodCast. I'm assuming you know some basic HTML, but if I'm wrong let me know)
    However, if you want to just create a link to you iTunes Music Store Listing where people can click the subscribe button from there, then you follow these steps.
    1. Go to your iTunes Music Store listing
    2. CTRL-click on your podcast title
    3. It should say "Copy iTunes Music Store URL"
    4. Paste this as a hyperlink in your website (it should look like: http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=97154883&s=1434 41 and it will take users to your music store listing if they have iTunes installed.)
    Hope that was what you were looking for.

  • Automate MSOCAF (SharePoint Online Code Analysis Framework) ?

    Can I generate automated reports with MSOCAF ? (Without using the MSOCAF GUI)
    Is there a way to control MSOCAF with PowerShell?

    Since most of msocaf just runs fxcop, cat.net and spdisposechecker, it's pretty simple to integrate these into Visual Studio and TFS. I went a step further and re-targetted the rules to the FxCop 10.0 binaries, that way you can achieve complete TFS and Visual
    Studio integration. I went the way of makign the rules compatible with FxCop 10, but you can also simply create a number of target files in msbuild that execute the fxcop, cat.net and spdisposechecker binaries on your project output. That will give you the
    same result as running the wizard.
    To find the actual binaries run MSOCAF, and then from the task manager rightclick the process and pick Open File Location. 
    We try to make sure we're at 0 items found and with the Visual Studio integration you can simply add the proper SupressMessage attributes to suppress the warning in the actual MSOCAF tool.
    Apart from my blog and my fxcopcontrib project, you might want to check out:
    MsBuild Community Tasks (fxcop task)
    CAT.NET msbuild task
    Community TFS Build Extensions (fxcop disposechecker, cat.net (even 2.0)). through build process template customization
    Since the integration into FxCop gives the best integration in both Visual Studio and Team Build, I went in that way. If you need help or want to give feedback, please contact me through my
    google+ or
    twitter.
    What these solutions don't do is create the actual MSOCAF report, but it makes it a lot easier to stay on a low number (or zero) of warnings.
    My blog: blog.jessehouwing.nl

  • How do I get the RSS Feed to work when loading onto server other than .mac?

    Does anyone have any knowledge of this? I am uploading a site created in iWeb on to a Media Temple which of course, disables many key functions in iWeb. One thing it supposedly doesn't disable though, is the RSS Feed, provided you input the proper URL when publishing the site. However, after nearly 20 tries with as many variations on the url as I could think of, nothing seems to work. Anyone have any insight? Many thanks in advance.

    It takes two things...
    1. Entering the correct base URL in the Publish to Folder window, and...
    2. Uploading the correct files to your server
    Number 1
    When you select "Publish to Folder", there should be a little text field where you are asked to enter in a URL. What you need to enter here is the base URL for your site, and in most cases this is simply your domain name: http://www.yourdomain.com That's it. Nothing more. iWeb will then take this URL base and generate a functioning RSS feed URL.
    Number2
    When you select "Publish to Folder", you are asked to specify a folder INTO which iWeb will save the files necessary for the functioning of your site. You will need to upload only the CONTENTS of this specified folder, which includes only TWO items: an index.html file & your sitefolder. You must upload only these two items to your server WITHOUT the enclosing folder (the one you told iWeb to publish into.
    If you satisfy the above two conditions (and only if you satisfy these two conditions), then you will end up with a functioning, automatically generated RSS feed from iWeb on your own server. There are other ways of achieving this endpoint (a functioning RSS feed), but this is the ONLY way to get iWeb to do all the work for you.

  • Retrieve an RSS feed with socket within script

    Hi, does anyone has ever used a script to retrieve an RSS feed with socket.
    Here is the code I use :
    var webConnect = new Socket;
    var response = new String;
    var rss = "";
    if(webConnect.open("api.meteorologic.net:80","UTF-8")){
    webConnect.write("GET /forecarss?p=Paris");
    response =  webConnect.read(9999999);
    response = response.toString();
    var xmlStart = response.indexOf("<?xml");
    var xmlString = response.substring(xmlStart, response.length);
        try
            rss = new XML(xmlString);      
        }catch(e){ alert('error parsing XML with error \r ' + e.toString()) }
    alert(rss);
    but the display "alert(rss);" is blank while the web page contains much information : http://api.meteorologic.net/forecarss?p=Paris
    thanks for any help..
    Michel

    That's because "publishing a feed" is really "uploading a file to a web server". Most web servers don't allow the HTTP "PUT" method, and most RSS feeds are probably not updated that way. Rather, the feed document is uploaded to the web server in whatever way the web hosting service provides; FTP, or via a POST from a web form. Since there's no standard, it makes sense that there's no API for publishing a feed.
    For any given web hosting service, it's possible to automate the upload; but the details will vary.
    Powerbook G4 1GHz   Mac OS X (10.3.9)  

  • The system Pages library and its RSS feed do not work properly in SharePoint 2010

    This question is about RSS feed for the system 'Pages' library in SharePoint 2010.
    Now there are 5 'News' pages in the system 'Pages' library. In each news page there is one field called 'Title' for the news title. One of the news page is named 'FileNamePage5.aspx', and the news title is 'This is the title of page5'.
    I have enabled RSS in Site Settings, and configured RSS Settings for the 'Pages' library from the Communications section via Document Library Settings. I selected a few columns to display in the RSS description, including the 'Title' column. In the RSS feed
    (XML file) of the system 'Pages' library, I checked the XML source code, and found the news page file name appearing in the <title> tag below within the feed (XML source code).
     <title>FileNamePage5</title>
    and the original news title 'This is the title of page5' was appearing in the <description> tag in the feed (XML sorce code)
     <description><![CDATA[<div> ... This is the title of page5... </div>]]></description>.
    This would make it hard to extract ONLY the original news title (This is the title of page5) out of the feed via XSLT, because the data within the <description> tag in the feed also contains data from all other selected columns defined via the RSS
    Setting. If I did not select the 'Title' column via RSS Setting above, I even could not find the orinigal news title in the RSS feed.
    This is happening for all other news pages in the system 'Pages' library. Is this what SharePoint 2010 normally does? or is something wrong with the settings for site or the system 'Pages' library?
    How to display ONLY the original news title (This is the title of page5) in the <title> tag in the RSS feed. Please Help me to resolve this issue.
    谢亚军@Sydney

    Hi,
    According to your description, my understanding is that you want to display the value in Title column of Pages library in title tag in RSS Feed in SharePoint.
    I tested the same scenario per your post, the title tag in RSS Feed displayed the value of Name column in libraries and displayed the value of Title column in lists.
    It is by design and there is no OOB way to change the default column mapping in RSS Feed.
    I recommend to customize your own RSS Feed style sheet to make the title displays the value of Title column in SharePoint libraries.
    Here is a link about customizing the RSS Feed for document library for you to take a look:
    http://markeev.com/Articles/sharepoint-blog-rss.aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • RSS-Feeds and Mac OS 10.4.6 Update

    It seems, that the issue with updating the RSS-Feeds in the bookmark bar automatically is not solved by the new Mac OS X update. For testing I changed syncing from hourly to automatically and now the RSS-Feeds are not anymore updated.
    I think the issue with syncing the status of the RSS-Feeds is also not solved! Have anyone tested it?

    I don't use the synch. option. However, my RSS feeds are updating without problem after the update. If I remember correctly, the RSS feed update was affected by synching through .Mac? Is that true?
    What method did you use to update your system. As a rule, I use the combo update. If you used the incremental method, I suggest using the combo update. Remember to repair permissions via Disk Utility after the update.

  • Synchronizing RSS Feeds with MS Exchange

    Hello!
    My company uses Microsoft Exchange as the email server and my email is synchronized using BES.  I have set up some RSS feeds in Outlook -- is there any way to have these feeds synchronized on BlackBerry so that I can read these on the move?
    My device is the BlackBerry Curve 8520 with OS v 5.0
    Many thanks in advance.
    Best,
    KB
    Solved!
    Go to Solution.

    Hello kbelai,
    Welcome to the BlackBerry Support Community.
    Thank you for your question.
    This feature is currently unsupported on devices earlier than BlackBerry device software 6.
    Device running BlackBerry 6 and higher can add RSS feeds using the Social Feeds application.
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • RSS Feed help

    I've switched all my RSS feeds to Mail, but for the past week, none of them have been showing up. Everytime I start Mail, multiple feeds, but not all, show an error message, while the rest of the feeds show know updates. I have updated all my software. It may be a matter of Atom vs. RSS feeds, but that wouldn't explain why none of the feeds are updating. Help?

    i've found something similiar.
    My RSS feeds are no longer updating automatically. (i've checked the setting, and they're set to every 15 minutes).
    This has only started since the .2 update.

  • Problems with rss feeds in Firefox.

    When i enter an rss feed url into firefox, it automatically switches to safari to open the url.  Firefox is my default browser; I am trying to set up rss feeds in Firefox.  How do I prevent this from happening so that these urls will open in Firefox?

    wast3 wrote:I have this too. Green background when gst-vaapi is installed. Totem is also affected. VAAPI itself works fine in mplayer and vlc. First generation Core i7 here with Intel HD Video. Has been like this for months now...
    Same problem here... And in this thread some experience the same behavior: https://bbs.archlinux.org/viewtopic.php … 1#p1480991
    Edit: Package name is now gstreamer-vaapi
    Last edited by neo1973 (2015-02-12 09:25:25)

  • Thunderbird has hijacked Safari rss feeds - how do I stop this?

    I installed Thunderbird a while back just to test its functionality. I use apple Mail.
    Ever since, when I follow a link to an RSS feed in Safari, Thunderbird opens automatically. But I want to get the feed sent to Mail.
    Does anyone know how Thunderbird is doing this. I can't find any options in Safari or Thunderbird to prevent this behaviour. And even when I deleted Thunderbird, Safari still tried to install it.
    Please help!
    Al

    Why does clicking on former RSS feeds in Safari open Thunderbird?

  • How to allow or unrestrict silverlight plugin in Safari 7 (applescript, xcode or automatic way)

    Without any user prompting, I want to allow or unrestrict silverlight plugin in Safari 7 (OS X maverick), Any code (applescript or xcode) is working fine to do it? or Any automatic or semi-automatic way recommend me? thanks, regards

    Without any user prompting, I want to allow or unrestrict silverlight plugin in Safari 7 (OS X maverick), Any code (applescript or xcode) is working fine to do it? or Any automatic or semi-automatic way recommend me? thanks, regards

  • RSS feed for specific forum.

    Is it possible to generate an RSS feed of the LabVIEW forum? I don't like subscribing via email spam so would prefer RSS feeds instead. Is there a way? I know there is a filter here:
    http://www.ni.com/rss/
    Is there a way to use that?
    Michael Aivaliotis
    VI Shots LLC

    Hmm, I played around with the RSS URL to see if I could figure out something and I came up with this:
    http://sine.ni.com/nirss/nirssnews?nistype=rss&filter=+url:forums.ni.com/ni/board/message?board.id=1...
    It sort'of works but I get posts from all of the forums apparently.
    It's just a coincidence that the LabVIEW forum is the most active and
    it dominates the feeds.
    Michael Aivaliotis
    VI Shots LLC

  • Naming your RSS feed?

    I'm sorry if this is something obvious, but I've looked and looked and can't seem to find what I need...
    I have a site with a blog created in iWeb 09 and published via MobileMe (although with my own domain name). The blog page uses the iWeb-created RSS feed link. When you follow that link online, the title of the page is simply "The Blog," rather than my site name. Similarly, if you subscribe to it, posts read in Apple Mail show "The Blog" as the title in that white-on-blue section across the top. (I'm subscribed to other RSS feeds in Mail, and they each display individualized titles.)
    So how do I name the RSS feed?
    Thanks!

    My 2 cents,
    When you publish your site I think IWeb ask you to enter your website name in a box and underneath that box they explain why (specialy for RSS feeds). Did you do that?
    I had a hard time to figure that RSS feed button to work but I think entering the website path solved my problem.
    Thierry

Maybe you are looking for