无需用户交互即可获取Office 365 API访问令牌

时间:2016-07-28 20:57:26

标签: c# office365 office365api

我想在我的应用程序中添加一项功能,以便能够在没有用户交互的情况下将日历事件添加到outlook.com。

我见过的所有示例都要求用户登录才能访问office 365 api令牌。如何在没有用户交互的情况下获得该令牌?

1 个答案:

答案 0 :(得分:2)

您可以使用客户端凭据来请求令牌,而不是 OAuth 2.0代码授予流程

以下是您的参考请求:

POST https://login.microsoftonline.com/<tenantId>/oauth2/token HTTP/1.1
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
&client_id=<clientId>
&client_secret=<clientSecret>
&resource=https://outlook.office.com

以下是使用Microsoft.IdentityModel.Clients.ActiveDirectory请求hte令牌的示例:

   public static async Task<string> GetTokenAsync(string resource, string clientId, string secrect)
    {
        string authority = "https://login.microsoftonline.com/{yourTenantName}";
        AuthenticationContext authContext = new AuthenticationContext(authority);

        ClientCredential clientCredential = new ClientCredential(clientId, secrect);
        AuthenticationResult authResult=await authContext.AcquireTokenAsync(resource, clientCredential);
        return authResult.AccessToken;
    }

有关Office 365 REST的更多详细信息,请参阅here