mirror of
https://github.com/friendica/friendica
synced 2025-04-27 12:30:11 +00:00
Refine OAuth flow
This commit is contained in:
parent
78a85df86b
commit
7975bc244d
8 changed files with 134 additions and 32 deletions
58
src/Object/Api/Mastodon/Token.php
Normal file
58
src/Object/Api/Mastodon/Token.php
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?php
|
||||
/**
|
||||
* @copyright Copyright (C) 2010-2021, the Friendica project
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Friendica\Object\Api\Mastodon;
|
||||
|
||||
use Friendica\BaseDataTransferObject;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
|
||||
/**
|
||||
* Class Error
|
||||
*
|
||||
* @see https://docs.joinmastodon.org/entities/error
|
||||
*/
|
||||
class Token extends BaseDataTransferObject
|
||||
{
|
||||
/** @var string */
|
||||
protected $access_token;
|
||||
/** @var string */
|
||||
protected $token_type;
|
||||
/** @var string */
|
||||
protected $scope;
|
||||
/** @var string (Datetime) */
|
||||
protected $created_at;
|
||||
|
||||
/**
|
||||
* Creates a token record
|
||||
*
|
||||
* @param string $access_token
|
||||
* @param string $token_type
|
||||
* @param string $scope
|
||||
* @param string $created_at
|
||||
*/
|
||||
public function __construct(string $access_token, string $token_type, string $scope, string $created_at)
|
||||
{
|
||||
$this->access_token = $access_token;
|
||||
$this->token_type = $token_type;
|
||||
$this->scope = $scope;
|
||||
$this->created_at = DateTimeFormat::utc($created_at, DateTimeFormat::ATOM);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue