0

這是我在共享點中創建新列表的URL。如何使用Rest服務在SharePoint 2013中添加新列表

http://mysite/_api/web/lists 

頁眉

Accept:application/json 
odata:verbose 
X-RequestDigest:0x95F99ED44821F59DE52F628A82E4DFE6281D64349398251D47B063BEA15AA783C70656A30E0EC388C62E72E001B4F2BEB7AD716DAF1F63D79A170A8A4C299182,03 May 2016 07:01:30 -0000 
content-type:application/json; 
odata=verbose 
content-length:6 

身體

{ 
    "parameters": { 
     "__metadata": { 
      "type": "SP.List" 
     }, 
     "AllowContentTypes": true, 
     "BaseTemplate" : 100, 
     "ContentTypesEnabled": true, 
     "Description": "My ow list created", 
     "Title": "newList" 

    } 
} 

但是當試圖執行在郵差這個網址我收到以下錯誤

<m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"> 
    <m:code>-2130575252, Microsoft.SharePoint.SPException</m:code> 
    <m:message xml:lang="en-US">The security validation for this page is invalid and might be corrupted. Please use your web browser's Back button to try your operation again.</m:message> 
</m:error> 

有人能指導我,爲什麼現在面臨這個問題?

回答

0

此錯誤的可能原因是您的表單摘要已過期。

嘗試用做一種新的形式通過使POST請求/_api/contextinfo端點消化,然後在部分更換。

我已經測試了以下代碼正文它正在工作。

{ 
     "__metadata": { 
      "type": "SP.List" 
     }, 
     "AllowContentTypes": true, 
     "BaseTemplate" : 100, 
     "ContentTypesEnabled": true, 
     "Description": "My own list created", 
     "Title": "newList" 
    } 
相關問題