Hi All,
I have written a console application to sync the SharePoint Online user profile properties. I am using the new Client OM DLL's available in SharePoint Online which has the new method to update the profile properties(SetSingleValueProfileProperty).
This is my Code :
PeopleManager peopleManager = new PeopleManager(clientContext); PersonProperties personProperties = peopleManager.GetPropertiesFor(accountName); clientContext.Load(personProperties); clientContext.ExecuteQuery();The issue is that I am not getting the Profile Properties which has Default Privacy setting "Only Me" in the personProperties.UserProfileProperties after the ExecuteQuery method is called even though I have created the ClientContext object by passing the global admin credentials. I am getting all the other properties which has Privacy Setting "EveryOne". Please help.