我正在尝试使用 Microsoft.SharePointOnline.CSOM 版本 16.1.7018.1200 构建 SharePoint Online 适配器
我正在努力为这个 REST API 寻找正确的端点 URL。其中一些可能与 GDrive 中的相同(因为它们都使用 OAuth2),但我仍然有点困惑。我的问题是关于: - 范围、LoginBaseUrl、AccessTokenBaseUrl 和 UserInfoEndpointUrl
作为 GDrive 情况的一个例子是:
Scope = "https://www.googleapis.com/auth/drive.file";
LoginBaseUrl = "https://accounts.google.com/o/oauth2/auth";
AdditionalLoginParameters.Add("response_type", "code");
AccessTokenBaseUrl = "https://accounts.google.com/o/oauth2/token";
AdditionalAccessTokenParameters.Add("grant_type", "authorization_code");
UserInfoEndpointUrl = "https://www.googleapis.com/drive/v3/about?fields=user&access_token=" + accessToken;
PS:如果有人有一些文档或代码示例,将非常感谢!到目前为止,我只能找到用于读取操作的代码示例。
如果需要任何其他信息,请告诉我。
最好的问候,SVG