一个使用sharepoint框架的C#应用程序,从sharepoint服务器接收列表并通过soap返回它。作为回应;查找字段的解析如下。
"BrandList":[{"LookupId":7,"LookupValue":"Apple"},{"LookupId":51,"LookupValue":"Turkcell"}],
"BrandList_x003A_Title":[{"LookupId":7,"LookupValue":"Apple"}
因此我们可以访问列表的品牌数据。
现在,我们要通过外部应用程序调用sharepoint rest API来做到这一点。但是,当我们调用API的_api/web/lists/GetByTitle('ListName')/getitems
URL时,它返回如下。
"BrandListId": {"results": [41]}
问题是,如何通过rest API以相同的方式获取它?
尝试将扩展参数附加到请求URL,但不能同时使用,并且不是通用的。