ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
OAuthDataStore Class Reference
+ Inheritance diagram for OAuthDataStore:
+ Collaboration diagram for OAuthDataStore:

Public Member Functions

 lookup_consumer ($consumer_key)
 
 lookup_token ($consumer, $token_type, $token)
 
 lookup_nonce ($consumer, $token, $nonce, $timestamp)
 
 new_request_token ($consumer)
 
 new_access_token ($token, $consumer)
 

Detailed Description

Definition at line 714 of file OAuth.php.

Member Function Documentation

◆ lookup_consumer()

OAuthDataStore::lookup_consumer (   $consumer_key)

Reimplemented in TrivialOAuthDataStore.

Definition at line 716 of file OAuth.php.

717 {
718 // implement me
719 }

◆ lookup_nonce()

OAuthDataStore::lookup_nonce (   $consumer,
  $token,
  $nonce,
  $timestamp 
)

Reimplemented in TrivialOAuthDataStore.

Definition at line 726 of file OAuth.php.

727 {
728 // implement me
729 }

◆ lookup_token()

OAuthDataStore::lookup_token (   $consumer,
  $token_type,
  $token 
)

Reimplemented in TrivialOAuthDataStore.

Definition at line 721 of file OAuth.php.

722 {
723 // implement me
724 }

◆ new_access_token()

OAuthDataStore::new_access_token (   $token,
  $consumer 
)

Reimplemented in TrivialOAuthDataStore.

Definition at line 736 of file OAuth.php.

737 {
738 // return a new access token attached to this consumer
739 // for the user associated with this token if the request token
740 // is authorized
741 // should also invalidate the request token
742 }

◆ new_request_token()

OAuthDataStore::new_request_token (   $consumer)

Reimplemented in TrivialOAuthDataStore.

Definition at line 731 of file OAuth.php.

732 {
733 // return a new token attached to this consumer
734 }

The documentation for this class was generated from the following file: