如何使用Javascript在云/ windows azure(提供商)托管应用程序中获取sharepoint在线(office 365)数据?

时间:2015-01-20 11:05:55

标签: sharepoint-2013 office365

如何使用Javascript在cloud / windows azure(提供商)托管应用中获取sharepoint在线(office 365)数据?

我希望使用javascript在html页面(托管在windows azure中)中检索sharepoint在线数据,然后需要使用AngularJS

1 个答案:

答案 0 :(得分:0)

您是否拥有在Sharepoint Online中注册的提供商托管应用程序?

我认为需要考虑CORS问题。

试试这个:

的JavaScript

 executor.executeAsync(
{
    url:
        appweburl +
        "/_api/SP.AppContextSite(@target)/web/title?@target='" +
        hostweburl + "'",
    method: "GET",
    headers: { "Accept": "application/json; odata=verbose" },
    success: successHandler,
    error: errorHandler
}

);

另请参阅:https://msdn.microsoft.com/en-us/library/office/fp179927.aspx