0

过去,我编写了使用 Microsoft Graph 连接到 OneDrive 的应用程序。

现在我的老板让我编写应用程序来与 SharePoint 通信,所以情况是这样的:我在一个单独的网络(没有互联网连接)中有一个 shrepoint 服务器。我可以从浏览器访问 SharePoint 管理,例如:http://mySharePoint:5186

我的问题,我如何注册我的应用程序,因为共享点服务器和将连接到此 SharePoint 的应用程序没有连接到互联网。我的意思是如何获取客户端 ID、令牌等。

我试图重新注册我在浏览器中编写的应用程序http://mySharePoint/_layout/15/appreqnew.aspx但我在浏览器中收到“抱歉,出现问题”错误

4

1 回答 1

0

Microsoft Graph 不支持本地 SharePoint 服务器。这里有一个很棒的文档可以帮助你理解你的场景https://docs.microsoft.com/en-us/sharepoint/dev/general-development/choose-the-right-api-set-in-sharepoint

如果您在页面中的 SharePoint 服务器上下文中运行代码,则会为您处理身份验证。如果您从 SharePoint 服务器上下文之外的服务调用 API。您必须阅读有关 SharePoint REST API 身份验证的更多信息。场景太多,但这里有更多内容https://docs.microsoft.com/en-us/sharepoint/dev/general-development/build-mobile-apps-for-other-platforms-using-sharepoint# BuildMobileAppsInSharePoint2013ForNonWindowsPhone_AuthenticatingNonWindowsAppForSharePoint

于 2019-06-19T20:00:10.653 回答