25 lines
1.0 KiB
PHP
25 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace oauth2\responses;
|
|
|
|
use oauth2\OAuth2Protocol;
|
|
|
|
class OAuth2AccessTokenValidationResponse extends OAuth2DirectResponse {
|
|
|
|
public function __construct($access_token,$scope, $audience,$client_id,$expires_in, $user_id = null)
|
|
{
|
|
// Successful Responses: A server receiving a valid request MUST send a
|
|
// response with an HTTP status code of 200.
|
|
parent::__construct(self::HttpOkResponse, self::DirectResponseContentType);
|
|
$this[OAuth2Protocol::OAuth2Protocol_AccessToken] = $access_token;
|
|
$this[OAuth2Protocol::OAuth2Protocol_ClientId] = $client_id;
|
|
$this[OAuth2Protocol::OAuth2Protocol_TokenType] = 'Bearer';
|
|
$this[OAuth2Protocol::OAuth2Protocol_Scope] = $scope;
|
|
$this[OAuth2Protocol::OAuth2Protocol_Audience] = $audience;
|
|
$this[OAuth2Protocol::OAuth2Protocol_AccessToken_ExpiresIn] = $expires_in;
|
|
|
|
if(!is_null($user_id)){
|
|
$this[OAuth2Protocol::OAuth2Protocol_UserId] = $user_id;
|
|
}
|
|
}
|
|
}
|