mirror of
https://github.com/friendica/friendica
synced 2025-01-13 11:24:43 +00:00
22 lines
384 B
PHP
22 lines
384 B
PHP
<?php
|
|
|
|
namespace Friendica\Security\OAuth1;
|
|
|
|
class OAuthConsumer
|
|
{
|
|
public $key;
|
|
public $secret;
|
|
public $callback_url;
|
|
|
|
function __construct($key, $secret, $callback_url = null)
|
|
{
|
|
$this->key = $key;
|
|
$this->secret = $secret;
|
|
$this->callback_url = $callback_url;
|
|
}
|
|
|
|
function __toString()
|
|
{
|
|
return "OAuthConsumer[key=$this->key,secret=$this->secret]";
|
|
}
|
|
}
|