Class Web.Auth.OAuth.Client

Inheritance graph
Web.Auth.OAuth.Client Web.Auth.OAuth.Authentication
Description

OAuth client class.

Note

This class is of no use by it self. It's intended to be inherited by classes that uses OAuth authorization.


Variable access_token_url

protected string Web.Auth.OAuth.Client.access_token_url

Description

The endpoint to send request for an access token.


Variable consumer

protected Consumer Web.Auth.OAuth.Client.consumer

Description

The consumer object.


Variable request_token_url

protected string Web.Auth.OAuth.Client.request_token_url

Description

The endpoint to send request for a request token.


Variable token

protected Token Web.Auth.OAuth.Client.token

Description

The token object.


Variable user_auth_url

protected string Web.Auth.OAuth.Client.user_auth_url

Description

The enpoint to redirect to when authorize an application.


Method create

Web.Auth.OAuth.Client Web.Auth.OAuth.Client(Consumer consumer, Token token)

Description

Create a new Client.

Note

This class must be inherited