ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
OAuthConsumer.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
IMSGlobal\LTI\OAuth
;
4
12
class
OAuthConsumer
{
13
14
public
$key
;
15
public
$secret
;
16
17
function
__construct
(
$key
,
$secret
, $callback_url=NULL) {
18
$this->key =
$key
;
19
$this->secret =
$secret
;
20
$this->callback_url = $callback_url;
21
}
22
23
function
__toString
() {
24
return
"OAuthConsumer[key=$this->key,secret=$this->secret]"
;
25
}
26
27
}
IMSGlobal\LTI\OAuth\OAuthConsumer\__construct
__construct($key, $secret, $callback_url=NULL)
Definition:
OAuthConsumer.php:17
IMSGlobal\LTI\OAuth
Definition:
OAuthConsumer.php:3
IMSGlobal\LTI\OAuth\OAuthConsumer
Class to represent an OAuth Consumer.
Definition:
OAuthConsumer.php:12
IMSGlobal\LTI\OAuth\OAuthConsumer\$secret
$secret
Definition:
OAuthConsumer.php:15
php
IMSGlobal\LTI\OAuth\OAuthConsumer\__toString
__toString()
Definition:
OAuthConsumer.php:23
IMSGlobal\LTI\OAuth\OAuthConsumer\$key
$key
Definition:
OAuthConsumer.php:14
libs
composer
vendor
imsglobal
lti
src
OAuth
OAuthConsumer.php
Generated on Thu Jan 16 2025 19:01:41 for ILIAS by
1.8.13 (using
Doxyfile
)