使用REST _api将事件添加到SharePoint日历列表

时间:2017-12-11 17:47:20

标签: javascript sharepoint-online sharepoint-list sharepoint-api

是否有人知道如何使用Sharepoint REST _api将事件发布到SharePoint Online日历列表。

我在堆栈上发现了这篇文章:link 但它使用我不必使用的授权,因为我的应用程序位于sharepoint内部。我找到了关于如何为前景日历制作CRUD的文档。但它当然不包括分享点。

这是到目前为止的代码:

    function PostToBokningar() {
    var url = `${_spPageContextInfo.webAbsoluteUrl}/_api/web/lists/getbytitle('Bokningar')/items`;
    //requestHeaders
    var requestHeaders = {
        "accept": "application/json;odata=verbose",
        "content-type": "application/json;odata=verbose",
        "X-RequestDigest": jQuery('#__REQUESTDIGEST').val()
    }
    //Data
    var data = {
        __metadata: { "type": "SP.Data.BokningarListItem" },
        Title: "Test title",
        EventDate: moment.utc("2017-12-12 10:00").format('YYYY-MM-DD HH:mm:ssZ'),
        EndTime: moment.utc("2017-12-12 17:00").format('YYYY-MM-DD HH:mm:ssZ'),
        Description: "test description"
    };
    //requestBod
    var requestBody = JSON.stringify(data);
    //Post
    var post = jQuery.ajax({
        url: url,
        type: "POST",
        headers: requestHeaders,
        data: data
    })

}

我得到的错误信息是:

{"error":{"code":"-1, Microsoft.SharePoint.Client.InvalidClientQueryException","message":{"lang":"en-US","value":"Invalid JSON. A token was not recognized in the JSON content."}}}

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

是的,您的代码中有两个错误。您没有将字符串化的json发送到REST服务。将呼叫替换为:

var post = jQuery.ajax({
    url: url,
    type: "POST",
    headers: requestHeaders,
    data: requestBody
})

此外,事件结束的字段称为EndDate而不是EndTime,因此请替换为:

var data = {
    __metadata: { "type": "SP.Data.BokningarListItem" },
    Title: "Test title",
    EventDate: moment.utc("2017-12-12 10:00").format('YYYY-MM-DD HH:mm:ssZ'),
    EndDate: moment.utc("2017-12-12 17:00").format('YYYY-MM-DD HH:mm:ssZ'),
    Description: "test description"
};