// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Net.Http; using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Authentication; namespace Microsoft.AspNet.Authentication.OAuth { /// /// Configuration options for . /// public class OAuthOptions : AuthenticationOptions { /// /// Gets or sets the provider-assigned client id. /// public string ClientId { get; set; } /// /// Gets or sets the provider-assigned client secret. /// public string ClientSecret { get; set; } /// /// Gets or sets the URI where the client will be redirected to authenticate. /// public string AuthorizationEndpoint { get; set; } /// /// Gets or sets the URI the middleware will access to exchange the OAuth token. /// public string TokenEndpoint { get; set; } /// /// Gets or sets the URI the middleware will access to obtain the user information. /// This value is not used in the default implementation, it is for use in custom implementations of /// IOAuthAuthenticationEvents.Authenticated or OAuthAuthenticationHandler.CreateTicketAsync. /// public string UserInformationEndpoint { get; set; } /// /// Get or sets the text that the user can display on a sign in user interface. /// public string Caption { get { return Description.Caption; } set { Description.Caption = value; } } /// /// Gets or sets timeout value in milliseconds for back channel communications with the auth provider. /// /// /// The back channel timeout. /// public TimeSpan BackchannelTimeout { get; set; } = TimeSpan.FromSeconds(60); /// /// The HttpMessageHandler used to communicate with the auth provider. /// This cannot be set at the same time as BackchannelCertificateValidator unless the value /// can be downcast to a WebRequestHandler. /// public HttpMessageHandler BackchannelHttpHandler { get; set; } /// /// Gets or sets the used to handle authentication events. /// public IOAuthEvents Events { get; set; } = new OAuthEvents(); /// /// A list of permissions to request. /// public IList Scope { get; } = new List(); /// /// The request path within the application's base path where the user-agent will be returned. /// The middleware will process this request when it arrives. /// public PathString CallbackPath { get; set; } /// /// Gets or sets the authentication scheme corresponding to the middleware /// responsible of persisting user's identity after a successful authentication. /// This value typically corresponds to a cookie middleware registered in the Startup class. /// When omitted, is used as a fallback value. /// public string SignInScheme { get; set; } /// /// Gets or sets the type used to secure data handled by the middleware. /// public ISecureDataFormat StateDataFormat { get; set; } /// /// Defines whether access and refresh tokens should be stored in the /// after a successful authentication. /// You can set this property to false to reduce the size of the final /// authentication cookie. Note that social providers set this property to false by default. /// public bool SaveTokensAsClaims { get; set; } = true; } }