FacebookAuthenticationOptions Class

 

Configuration options for FacebookAuthenticationMiddleware

Namespace:   Microsoft.Owin.Security.Facebook
Assembly:  Microsoft.Owin.Security.Facebook (in Microsoft.Owin.Security.Facebook.dll)

Inheritance Hierarchy

System.Object
  Microsoft.Owin.Security.AuthenticationOptions
    Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions

Syntax

public class FacebookAuthenticationOptions : AuthenticationOptions
public ref class FacebookAuthenticationOptions : AuthenticationOptions
type FacebookAuthenticationOptions = 
    class
        inherit AuthenticationOptions
    end
Public Class FacebookAuthenticationOptions
    Inherits AuthenticationOptions

Constructors

Name Description
System_CAPS_pubmethod FacebookAuthenticationOptions()

Initializes a new FacebookAuthenticationOptions

Properties

Name Description
System_CAPS_pubproperty AppId

Gets or sets the Facebook-assigned appId

System_CAPS_pubproperty AppSecret

Gets or sets the Facebook-assigned app secret

System_CAPS_pubproperty AuthenticationMode

If Active the authentication middleware alter the request user coming in and alter 401 Unauthorized responses going out. If Passive the authentication middleware will only provide identity and alter responses when explicitly indicated by the AuthenticationType.(Inherited from AuthenticationOptions.)

System_CAPS_pubproperty AuthenticationType

The AuthenticationType in the options corresponds to the IIdentity AuthenticationType property. A different value may be assigned in order to use the same authentication middleware type more than once in a pipeline.(Inherited from AuthenticationOptions.)

System_CAPS_pubproperty AuthorizationEndpoint

Gets or sets the URI where the client will be redirected to authenticate. The default value is 'https://www.facebook.com/dialog/oauth'.

System_CAPS_pubproperty BackchannelCertificateValidator

Gets or sets the a pinned certificate validator to use to validate the endpoints used in back channel communications belong to Facebook.

System_CAPS_pubproperty BackchannelHttpHandler

The HttpMessageHandler used to communicate with Facebook. This cannot be set at the same time as BackchannelCertificateValidator unless the value can be downcast to a WebRequestHandler.

System_CAPS_pubproperty BackchannelTimeout

Gets or sets timeout value in milliseconds for back channel communications with Facebook.

System_CAPS_pubproperty CallbackPath

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. Default value is "/signin-facebook".

System_CAPS_pubproperty Caption

Get or sets the text that the user can display on a sign in user interface.

System_CAPS_pubproperty Description

Additional information about the authentication type which is made available to the application.(Inherited from AuthenticationOptions.)

System_CAPS_pubproperty Provider

Gets or sets the IFacebookAuthenticationProvider used to handle authentication events.

System_CAPS_pubproperty Scope

A list of permissions to request.

System_CAPS_pubproperty SendAppSecretProof

Gets or sets if the appsecret_proof should be generated and sent with Facebook API calls. This is enabled by default.

System_CAPS_pubproperty SignInAsAuthenticationType

Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user ClaimsIdentity.

System_CAPS_pubproperty StateDataFormat

Gets or sets the type used to secure data handled by the middleware.

System_CAPS_pubproperty TokenEndpoint

Gets or sets the URI the middleware will access to exchange the OAuth token. The default value is 'https://graph.facebook.com/oauth/access_token'.

System_CAPS_pubproperty UserInformationEndpoint

Gets or sets the URI the middleware will access to obtain the user information. The default value is 'https://graph.facebook.com/me'.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Owin.Security.Facebook Namespace

Return to top