TwitterLoginProvider Class

Definition

Provides an LoginProvider implementation providing support for Twitter authentication.

public class TwitterLoginProvider : Microsoft.WindowsAzure.Mobile.Service.Security.LoginProvider
type TwitterLoginProvider = class
    inherit LoginProvider
Public Class TwitterLoginProvider
Inherits LoginProvider
Inheritance
TwitterLoginProvider

Constructors

TwitterLoginProvider(HttpConfiguration, IServiceTokenHandler)

Initializes a new instance of the AzureActiveDirectoryLoginProvider class with a given tokenHandler.

Properties

Config

Gets the System.Web.Http.HttpConfiguration for this instance.

Name

Gets or sets the name uniquely identifying this ILoginProvider. The name is used to refer to the this ILoginProvider from the LoginController as well as from the OWIN application pipeline.

TokenHandler

Gets the IServiceTokenHandler for this instance.

(Inherited from LoginProvider)
TokenLifetime

Gets or sets the lifetime for generated tokens.

(Inherited from LoginProvider)

Methods

AuthenticateClient(HttpRequestMessage)

Handles the specified client flow login request

(Inherited from LoginProvider)
ConfigureMiddleware(IAppBuilder, ServiceSettingsDictionary)

Configures this module for participation in the OWIN application pipeline. The module should be configured as passive so as only to participate in the mobile service authentication process when requested by the LoginController.

CreateCredentials(ClaimsIdentity)

Return the set of provider specific credentials for inclusion in a login token

CreateLoginResult(ClaimsIdentity, String)

Creates a login result to return after a successful login.

(Inherited from LoginProvider)
CreateTokenInfo(ClaimsIdentity, ProviderCredentials, String)

Creates the final login token using the specified inputs. Derived classes can override to customize the login token produced.

(Inherited from LoginProvider)
GetClientFlowAuthenticationType()

Gets the name under which the OWIN middleware handling the client flow should be registered.

(Inherited from LoginProvider)
ParseCredentials(JObject)

Deserialize the specified provider credentials

Applies to