Work at RealDolmen


SharePoint Server MVP since 2005


www.biwug.be
    http://jopx.blogspot.com
www.sharepointhillbilly.com




www.ericharlan.com
• Recommended Content web part driven by Search
  Analytics provides follow suggestions
• Community site
•       AppFabric
    •    Used by Distributed Cache service (Velocity)
    •    Drives social and token caching
    •    Fast State memory – not everything is persisted (e.g. document
         activities)
•   Microsoft.SharePoint.Client

•   Microsoft.SharePoint.ClientRuntime




•   Microsoft.SharePoint.Client.DocumentManagement

•   Microsoft.SharePoint.Client.UserProfiles

•   Microsoft.SharePoint.Client.Publishing

•   Microsoft.SharePoint.Client.Search

•   Microsft.SharePoint.Client.Taxonomy
•   Create Context

•   Build Request

•   Execute Query




•   SocialFeedManager – Get Feeds

•   SocialFollowingManager – Get Followed Content

•   SocialActor – User,site,document or tag

•   SocialPost – Text, attachment, likerInfo
//create the client context
ClientContext cc = new ClientContext("http://portal.contoso.com");
cc.Credentials = CredentialCache.DefaultCredentials;

//prepare your query
SocialFeedManager sfm = new SocialFeedManager(cc);
SocialFeedOptions feedOptions;
feedOptions = new SocialFeedOptions();
ClientResult<SocialFeed> feed = sfm.GetFeed(SocialFeedType.News, feedOptions);

//execute query
sfm.Context.ExecuteQuery();
http://msdn.microsoft.com/en-
us/library/windows/apps/hh465453.aspx
http://msdn.microsoft.com/en-
us/library/windows/apps/hh465388.aspx
http://jopx.blogspot.com




http://msdn.microsoft.com/en-us/library/jj163977(v=office.15).aspx



http://msdn.microsoft.com/en-us/library/windows/apps/br230301.aspx




http://msdn.microsoft.com/en-us/library/windows/apps/hh779077.aspx
Fun with Social, Windows 8 and Javascript
Fun with Social, Windows 8 and Javascript

Fun with Social, Windows 8 and Javascript