Skip to main content

Posts

Showing posts from February, 2018

Working with User Profile Client Side

Approach In addition to server side object model available in previous versions, Search and User Profiles in SharePoint 2013 provides the following set of API's. . NET Client Object Model REST Service JavaScript Client Object Model Prerequisites For search you need to have the following prerequisites based upon the approach you are using. Microsoft.SharePoint.Client.Search.dll   -  If you are making use of .NET client object model you need to add reference to this dll. SP.Search.js   - If you are using JSOM, you need to ensure that this js file is loaded on the page. http://<siteUri>/_api/search/ - If you are making a REST call then you need to use this access point. For user profiles you need to have the following prerequisites based upon the approach you are using. Microsoft.SharePoint.Client.UserProfiles.dll  -  If you are making use of .NET client object model you need to add reference to this dll. SP. UserProfiles .js   -...