Recently I have been working on the Social Media integration for the one of our Office 365 clients and One of the key tasks was to derive RSS feeds for all their Facebook, YouTube, and Twitter accounts. As many of you may know, RSS Viewer Web Part is not supported in Office 365 at the time of this article is written. I was fortunate to find Rene Modery’s Office 365 RSS Feed web part – http://modery.net/updated-rss-feed-web-part-for-office-365/ to extend and integrate in our Office 365 implementation.
There are hundreds of online resources on how to find RSS feed URLs for Facebook, YouTube, and Twitter but many of them are either hard to find or irrelevant with latest APIs. With this article, I am trying to document steps required for RSS feeds which would work for latest social media APIs.
Troubleshooting – If RSS feeds are not working with Rene Modery’s web part, please verify that social media profiles are public profiles and accessible without logging into the social media sites.
How to derive Facebook RSS Feed URL
Thanks to my colleague Bryan Gulley (@UXJester) for this tip.
RSS URL Format- http://www.facebook.com/feeds/page.php?format=rss20&id=XXXXX
- E.g. My company’s Facebook profile page is slalomconsulting – http://www.facebook.com/slalomconsulting
- First step is to find your application ID from here – http://graph.facebook.com/slalomconsulting This should give you profile ID – 46122209600 (Alternatively, you can cross-reference your profile info by entering your ID – http://developers.facebook.com/tools/explorer?method=GET&path=46122209600)
- Replace XXXXX with ID-46122209600, and Facebook RSS feed would be http://www.facebook.com/feeds/page.php?format=rss20&id=46122209600
How to derive YouTube Feed URL
RSS URL Format– http://www.youtube.com/rss/user/XXXXX
- e.g. My company’s account name is SlalomConsulting- http://www.youtube.com/user/SlalomConsulting
- Replace XXXXX with SlalomConsulting, and YouTube RSS feed would be http://www.youtube.com/rss/user/SlalomConsulting
How to derive Twitter RSS Feed URL
RSS URL Format- http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=XXXXX
- e.g. My company’s account name is @slalom – https://twitter.com/#!/slalom
- Replace XXXXX with slalom, and Twitter RSS feed would be http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=slalom
Hope this is helpful. I will definately reference this resource for future engagements.