我正在与设法通过我们的SharePoint网站上的REST API添加和更新列表项的开发人员合作。他想以编程方式更改Modified By字段。他在REST XML中添加了这个字段
<d:ModifiedById m:type="Edm.Int32">6545</d:ModifiedById>
但是,列表项继续显示运行REST API的服务帐户,而不是ModifiedById字段指定的用户。我已经遍地搜索过,无法找到使用REST API更改这些值的参考。我的开发人员尝试使用d:Editor但是会抛出错误
HTTP/1.1 400 Bad Request Response: Error processing request stream.
The property name 'Editor' specified for type
'Microsoft.SharePoint.DataService.DocumentsItem' is not valid.
进行此更改的方法是什么?