You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is it possible to impersonate a user? I perform SharePoint operations using;
using (var cc = new PnP.Framework.AuthenticationManager().GetACSAppOnlyContext(SPSiteUrl, SPClientID, SPClientSecret))
{
List list = cc.Web.Lists.GetByTitle("List Site");
cc.Load(list);
cc.ExecuteQuery();
View view = list.Views.GetByTitle("The List");
cc.Load(view);
cc.ExecuteQuery();
}
What I want to do is impersonate a user and perform LIKE an article.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, is it possible to impersonate a user? I perform SharePoint operations using;
What I want to do is impersonate a user and perform LIKE an article.
Thanks,
Beta Was this translation helpful? Give feedback.
All reactions