ILIAS  release_7 Revision v7.30-3-g800a261c036
OAuthConsumer Class Reference
+ Collaboration diagram for OAuthConsumer:

Public Member Functions

 __construct ($key, $secret, $callback_url=null)
 
 __toString ()
 

Data Fields

 $key
 
 $secret
 

Detailed Description

Definition at line 20 of file OAuth.php.

Constructor & Destructor Documentation

◆ __construct()

OAuthConsumer::__construct (   $key,
  $secret,
  $callback_url = null 
)

Definition at line 25 of file OAuth.php.

26 {
27 $this->key = $key;
28 $this->secret = $secret;
29 $this->callback_url = $callback_url;
30 }

References $key, and $secret.

Member Function Documentation

◆ __toString()

OAuthConsumer::__toString ( )

Definition at line 32 of file OAuth.php.

33 {
34 return "OAuthConsumer[key=$this->key,secret=$this->secret]";
35 }

Field Documentation

◆ $key

OAuthConsumer::$key

Definition at line 22 of file OAuth.php.

Referenced by __construct().

◆ $secret

OAuthConsumer::$secret

Definition at line 23 of file OAuth.php.

Referenced by __construct().


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