Blog
ADIS JUGO - THE SOUTHERN SIDE BLOG
Trusted advisor and entrepreneur. CEO of Teams Consulting. Co-founder and lead architect at run.events. Co-founder and deputy CEO at KORTO. Microsoft MVP for Microsoft 365 and Azure, and Microsoft Regional Director. Spiritus movens at CollabSummit and CloudSummit. Firmly believes in leading by example and motivation. Lives besides the oldest vineyard in the Rhine valley. Prefers collecting stories to collecting possessions.
How to like a post, on behalf of someone, in SharePoint 2013 social
In enterprise social scenarios, you will have use cases where you need to like, or unlike, a SharePoint feed social post on behalf on someone. That can happen, for example, as a integral part of some process, or in various other scenarios. This can not be achieved...
Programmatically creating MMS (Taxonomy) fields
It’s a common task to create SharePoint Fields (Columns) through code, and to deploy it to the SharePoint server as a feature. This process is actually quite an easy one: there is Visual Studio item called “Site Column” which you can add to the SharePoint Solution. It...
Programmatically reply on a social post in SharePoint 2013 personal or site feed
After my post about programmatically posting to SharePoint 2013 personal and site feeds, I've got a question about programmatically replying on the posts. Well, it's actually the same - you just past the post ID as the first argument of the...
List SharePoint 2013 site feed programmatically
In the last post, I have shown how to list the user's personal SharePoint 2013 feed. Here is the code snipped for getting the data from the site feed: using (SPSite site = new SPSite(siteName)) { using (SPWeb web = site.OpenWeb()) { SPServiceContext context =...
Programmatcally retrieve user’s newsfeed in SharePoint 2013
In enterprise social scenarios with SharePoint 2013, one of the basic tasks is to retrieve user's newsfeed. Here are the code snippets for doing it with server side and client side code. Server side: using (SPSite site = new SPSite(theSite)) { using (SPWeb...
Posting on SharePoint 2013 newsfeed on behalf of someone else
It is a common requirement in the enterprise social scenarios, to post on to SharePoint newsfeed on behalf on someone else. Those reasons are mainly in the domain of the social governance, or implementing internal procedures. Just think of automatic admin posts to the...