写在前面

最近项目中调用sharepoint rest api方式获取文件或者Item列表,而用的方式是通过证书请求,在上传文件,或者新建item的时候,默认的用户是在sharepoint端注册的用户,并不能满足需求,需要对其进行修改。因为注册的app,会将该注册的clientid和issurid对应的应用程序作为一个新的用户。关于注册的方式可以参考之前写的几篇文章。

系列文章

sharepoint环境安装过程中几点需要注意的地方

Rest API的简单应用

rest api方式实现对文档库的管理

通过WebClient模拟post上传文件到服务器

WebHttpRequest在sharepoint文档库中的使用

[sharepoint]Rest api相关知识(转)

[sharepoint]根据用户名获取该用户的权限

[sharepoint]根据用户名获取该用户的权限

代码

                ClientContext spContext = new ClientContext("http://xxx//xxxx/xxx");
spContext.ExecutingWebRequest += spContext_ExecutingWebRequest;
Web website = spContext.Web;
spContext.Load(website);
Microsoft.SharePoint.Client.File file = website.GetFileByServerRelativeUrl(serverReleativeUrl);
ListItem item = file.ListItemAllFields;
string loginName = @"i:0#.w|domain\" + _siteInfo.UserName;
User user = spContext.Web.EnsureUser(loginName);
item["Editor"] = user;
item["Author"] = user;
file.ListItemAllFields.Update();
spContext.ExecuteQuery();

验证

        public void spContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
{
HttpWebRequest webReq = e.WebRequestExecutor.WebRequest;
TokenHelper.ClientId = _siteInfo.ClientId;
TokenHelper.IssuerId = _siteInfo.IssureId;
var accessToken = TokenHelper.GetS2SAccessTokenWithWindowsIdentity(new Uri(_siteInfo.AppUrl), null);
webReq.Method = "Post";
webReq.Accept = "application/json;odata=verbose";
webReq.Headers.Add("Authorization", "Bearer " + accessToken);
}

修改Item类似

       /// <summary>
/// 修改Item的作者和编辑者
/// </summary>
/// <param name="siteInfo"></param>
/// <param name="itcode"></param>
/// <param name="itemId"></param>
public static void UpdateItemAuthor(SiteInfo siteInfo, string itcode, int itemId)
{
ClientContext spContext = new ClientContext(siteInfo.Url);
spContext.ExecutingWebRequest += spContext_ExecutingWebRequest;
Web web = spContext.Web;
spContext.Load(web);
spContext.ExecuteQuery();
List lst = web.Lists.GetById(new Guid(siteInfo.ListId));
spContext.Load(lst);
spContext.ExecuteQuery();
ListItem item = lst.GetItemById(itemId);
string loginName = @"i:0#.w|lenovo\" + itcode;
User user = web.EnsureUser(loginName);
item["Author"] = user;
item["Editor"] = user;
item.Update();
spContext.ExecuteQuery();
}

在修改或者新建item或者File的时候需要先获取contextinfo

       /// <summary>
/// 获得contextinfo
/// </summary>
/// <param name="siteInfo"></param>
/// <returns></returns>
private static string GetContextInfo(SiteInfo siteInfo)
{
HttpWebRequest contextInfoRequest = null;
HttpWebResponse contextInfoEndpointResponse = null;
StreamReader contextInfoStream = null;
try
{
Uri hostWebUri = new Uri(siteInfo.Url);
TokenHelper.ClientId = siteInfo.ClientId;
TokenHelper.IssuerId = siteInfo.IssureId;
var accessToken = TokenHelper.GetS2SAccessTokenWithWindowsIdentity(hostWebUri, null);
//获取contextinfo
contextInfoRequest = (HttpWebRequest)HttpWebRequest.Create(siteInfo.Url + "/_api/contextinfo");
contextInfoRequest.Method = "POST";
contextInfoRequest.Accept = "application/json;odata=verbose";
contextInfoRequest.ContentLength = ;
contextInfoRequest.Headers.Add("Authorization", "Bearer " + accessToken);
contextInfoEndpointResponse = (HttpWebResponse)contextInfoRequest.GetResponse();
contextInfoStream = new StreamReader(contextInfoEndpointResponse.GetResponseStream(), Encoding.UTF8);
string strContextInfoJson = contextInfoStream.ReadToEnd();
return strContextInfoJson;
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (contextInfoEndpointResponse != null)
{
contextInfoEndpointResponse.Dispose();
}
if (contextInfoStream != null)
{
contextInfoStream.Dispose();
}
}
}

总结

如果在请求的时候能带上账户信息,是最简单的一种方式,默认的就是当前的用户信息。比如spContext.Credentials =new NetWorkCredentials (uid,pwd,domain);或者在模拟请求的时候request.Credentials =new NetWorkCredentials (uid,pwd,domain);这种方式就不用再次请求进行修改文件或者item的属性了。默认的就是当前请求的用户。

[sharepoint]修改Item或者File的Author和Editor的更多相关文章

  1. sharepoint 修改AD密码

    sharepoint 修改AD密码 下面是添加添加“空元素”代码: 第一个<CustomAction>是添加修改密码项目 第二个<CustomAction>是添加js修改脚本 ...

  2. VUE项目中使用this.$forceUpdate();解决页面v-for中修改item属性值后页面v-if不改变的问题

    VUE项目中使用this.$forceUpdate();解决页面v-for中修改item属性值后页面v-if不改变的问题:https://blog.csdn.net/jerrica/article/d ...

  3. 利用Ajax增删改Sharepoint List Item

    在使用一个工具的是想要在本地的HTML文件或者JS,修改Sharepoint List中的数据. 如下是找到的方法.不知道还有其他方法没.IE中可以使用.记得加载Jquery. 如果是Chrome 浏 ...

  4. sharepoint修改密码

    增加SharePoint2010修改域密码功能 前提SharePoint2010的用户基于AD的,因此修改密码是修改了AD的密码,当然也可以修改本机密码(非域的密码).这里我们讨论修改域密码.我们修改 ...

  5. SharePoint Client Add Folder,file to Library

    public void UploadDocument(string siteURL, string documentListName, string documentListURL, string d ...

  6. 修改应用进程open file值

    本文用于记录java应用日志too many open files报错解决方法 操作系统:RHEL5.8 一.修改配置文件 1.vim /etc/security/limits.conf 加上:* s ...

  7. SharePoint 修改用户属性User Name

    前言 最近,碰到一个奇怪的事情,在SharePoint里的用户,如果显示方式显示为登录名(Account)的方式,显示为空.如下图: 1.经过查找,发现是因为用户属性 User name为空造成的,如 ...

  8. SharePoint 修改项目的new图标显示天数

    前言 最近有这么个需求,用户需要修改新建项目前面的new图标的显示天数,查了很久,发现有powershell命令或者stsadm命令可以,分享给大家. PowerShell命令 $wa = Get-S ...

  9. SharePoint Config database Log file too big – reduce it!

    SharePoint Config database logs are one thing to keep an eye on since they do have a tendency to gro ...

随机推荐

  1. JJTree Tutorial for Advanced Java Parsing

    The Problem JJTree is a part of JavaCC is a parser/scanner generator for Java. JJTree is a preproces ...

  2. Dao层的sql语句

    2018-08-12     21:33:43 反思:在数据库执行的时候,sql语句是正确的,复制到方法中,执行出错   因为把限定条件改为?时,把左括号删掉了,sql语句报错 改正:一定要确保sql ...

  3. Python第一个GUI

    #!/usr/bin/python#coding=utf-8'''Created on 2017年11月2日 from home @author: James zhan ''' from functo ...

  4. SpringMVC 搭建遇到的坑

    1. Caused by: org.xml.sax.SAXParseException; lineNumber: 8; columnNumber: 60; cvc-complex-type.2.4.c ...

  5. 福大软工 · 第十一次作业 - Alpha 事后诸葛亮(团队)

    福大软工·第十一次作业-Alpha事后诸葛亮 组长博客链接 本次作业博客链接 项目Postmortem 模板 设想和目标 我们的软件要解决什么问题?是否定义得很清楚?是否对典型用户和典型场景有清晰的描 ...

  6. BigDecimal加减乘除

    import java.math.BigDecimal; public class Testmath { public static void main(String[] args) { String ...

  7. nginx 支持的命令行参数

    Command-line parameters 命令行参数 nginx supports the following command-line parameters: nginx支持以下命令行参数 - ...

  8. ubuntu 安装 nvm 管理Node.js 以及vim 插件增强

    安装curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bashsource ~/.bashr ...

  9. 剑指Offer 47. 求1+2+3+...+n (其他)

    题目描述 求1+2+3+...+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字及条件判断语句(A?B:C). 题目地址 https://www.nowcod ...

  10. ssh: connect to host gitlab.alpha.com port 22: Network is unreachable

    在这里只说明我遇到的问题和解决方法,可能并不能解决你遇到的问题: git clone git@gitlab.alpha.com:ipcam/ambarella.gitCloning into 'amb ...