by adis.jugo | Jul 11, 2013 | Development
In enterprise social scenarios, imposing following users on behalf of another user is actually a must. Just think of the internal procedures – everyone from HR needs to follow the head of the HR department, since he’s going to publish important info on the...
by adis.jugo | Jul 5, 2013 | Development
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...
by adis.jugo | Jun 22, 2013 | Development
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...
by adis.jugo | Jun 17, 2013 | Development
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...
by adis.jugo | Jun 5, 2013 | Development
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 =...
by adis.jugo | Jun 3, 2013 | Development
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 web =...